run lint and tests in parallel

This commit is contained in:
Lex Berezhny 2020-02-09 16:34:04 -05:00
parent 9a49eb06da
commit 0185cb48fb

View file

@ -14,7 +14,6 @@ jobs:
- run: make lint
tests-unit:
needs: lint
name: "tests / unit"
runs-on: ubuntu-latest
steps:
@ -29,7 +28,6 @@ jobs:
run: coverage run -p --source=lbry -m unittest discover -vv tests.unit
tests-integration:
needs: lint
name: "tests / integration"
runs-on: ubuntu-latest
strategy:
@ -49,7 +47,7 @@ jobs:
- run: tox -e ${{ matrix.test }}
build:
needs: ["tests-unit", "tests-integration"]
needs: ["lint", "tests-unit", "tests-integration"]
name: "build"
strategy:
matrix: