Fix "Tests pass" step (#726)

This commit is contained in:
Félix Saparelli 2023-01-18 03:13:49 +13:00 committed by GitHub
parent 46a035699e
commit 939f17dcd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,9 +112,12 @@ jobs:
- linux-cross-check
- apple-m1-check
- lint
if: always() # always run even if dependencies fail
runs-on: ubuntu-latest
steps:
- run: echo "Tests pass"
# fail if ANY dependency has failed or been skipped or cancelled
- if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled')"
run: exit 1
# if everything succeeds and PR is ready for review, test the release/package process
release-builds: