From a3acc980ad600902a3153d0702be88db7bf80907 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 1 Oct 2020 11:46:39 +0200 Subject: [PATCH] build only when lint & tests succeeded, start lint and test 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 8d8c9532..54b793e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -54,8 +54,6 @@ jobs: test: runs-on: ubuntu-latest - needs: lint - env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} @@ -107,7 +105,7 @@ jobs: build: runs-on: ubuntu-latest - needs: test + needs: [lint, test] env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}