mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 22:30:03 +00:00
Fix "Tests pass" step (#726)
This commit is contained in:
parent
46a035699e
commit
939f17dcd0
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -112,9 +112,12 @@ jobs:
|
||||||
- linux-cross-check
|
- linux-cross-check
|
||||||
- apple-m1-check
|
- apple-m1-check
|
||||||
- lint
|
- lint
|
||||||
|
if: always() # always run even if dependencies fail
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
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
|
# if everything succeeds and PR is ready for review, test the release/package process
|
||||||
release-builds:
|
release-builds:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue