Skip to content

Commit

Permalink
ci: add success job (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Oct 30, 2024
1 parent 2f75f2c commit ce59660
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,22 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --all --check

ci-success:
name: ci success
runs-on: ubuntu-latest
if: always()
needs:
- test
- miri
- wasm
- feature-checks
- check-no-std
- clippy
- docs
- fmt
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit ce59660

Please sign in to comment.