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.
wait-for-all-tests
1 parent 29847c2 commit 1d2dc2fCopy full SHA for 1d2dc2f
1 file changed
.github/workflows/test.yml
@@ -204,11 +204,13 @@ jobs:
204
run: exit 1
205
206
wait-for-all-tests:
207
+ if: cancelled() || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'failure')
208
needs:
209
- positive
210
- outputs
211
- negative
212
- missing
213
runs-on: ubuntu-latest
214
steps:
- - run: echo "All tests passed!"
215
+ - name: Assert no required jobs were cancelled or failed
216
+ run: exit 1
0 commit comments