Skip to content

Commit

Permalink
Merge pull request #307 from cuviper/ci-robust
Browse files Browse the repository at this point in the history
Make the CI status more robust
  • Loading branch information
cuviper authored Feb 1, 2024
2 parents 1a50e7b + 76b4232 commit 4d35cbd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,16 @@ jobs:
- name: Build
run: cargo build --verbose --all-features

done:
ci-success:
name: Complete
runs-on: ubuntu-latest
needs: [tests, nostd_build, clippy, miri, minimal-versions]
steps:
- run: exit 0
ci-failed:
name: Complete
runs-on: ubuntu-latest
needs: [tests, nostd_build, clippy, miri, minimal-versions]
if: failure()
steps:
- run: exit 1

0 comments on commit 4d35cbd

Please sign in to comment.