We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c787b2f commit 80d95e7Copy full SHA for 80d95e7
.github/workflows/test-and-release.yml
@@ -47,8 +47,6 @@ jobs:
47
unit-tests:
48
if: contains(github.event.head_commit.message, '[skip ci]') == false
49
50
- needs: [check-and-lint]
51
-
52
runs-on: ${{ matrix.os }}
53
strategy:
54
matrix:
@@ -80,7 +78,7 @@ jobs:
80
78
contains(github.event.head_commit.message, '[skip ci]') == false &&
81
79
github.event_name == 'push'
82
83
- needs: [unit-tests]
+ needs: [check-and-lint, unit-tests]
84
85
runs-on: ubuntu-latest
86
@@ -117,7 +115,7 @@ jobs:
117
115
github.event_name == 'push' &&
118
116
startsWith(github.ref, 'refs/tags/v')
119
120
121
122
123
0 commit comments