Skip to content

Commit 80d95e7

Browse files
authored
ci: run jobs in parallel (#239)
1 parent c787b2f commit 80d95e7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/test-and-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ jobs:
4747
unit-tests:
4848
if: contains(github.event.head_commit.message, '[skip ci]') == false
4949

50-
needs: [check-and-lint]
51-
5250
runs-on: ${{ matrix.os }}
5351
strategy:
5452
matrix:
@@ -80,7 +78,7 @@ jobs:
8078
contains(github.event.head_commit.message, '[skip ci]') == false &&
8179
github.event_name == 'push'
8280
83-
needs: [unit-tests]
81+
needs: [check-and-lint, unit-tests]
8482

8583
runs-on: ubuntu-latest
8684
strategy:
@@ -117,7 +115,7 @@ jobs:
117115
github.event_name == 'push' &&
118116
startsWith(github.ref, 'refs/tags/v')
119117
120-
needs: [unit-tests]
118+
needs: [check-and-lint, unit-tests]
121119

122120
runs-on: ubuntu-latest
123121
strategy:

0 commit comments

Comments
 (0)