From 0185cb48fba614292ba226b0e38fd8323e55c375 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sun, 9 Feb 2020 16:34:04 -0500 Subject: [PATCH] run lint and tests in parallel --- .github/workflows/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b71b7dabd..fab46fcf4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: