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 37ba461 commit 943350aCopy full SHA for 943350a
.github/workflows/ci.yml
@@ -246,3 +246,24 @@ jobs:
246
set -x
247
git status
248
git diff --exit-code
249
+
250
+ # Dummy job to have a stable name for the "all tests pass" requirement
251
+ tests-pass:
252
+ name: Tests pass
253
+ needs:
254
+ - pure-rust-build
255
+ - test
256
+ - test-fast
257
+ - test-32bit
258
+ - installation
259
+ - lint
260
+ - cargo-deny
261
+ - wasm
262
+ - check-packetline
263
+ if: always() # always run even if dependencies fail
264
+ runs-on: ubuntu-latest
265
+ steps:
266
+ # fail if ANY dependency has failed or cancelled
267
+ - if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')"
268
+ run: exit 1
269
+ - run: exit 0
0 commit comments