Skip to content

Commit

Permalink
chore: add check to rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ludndev committed Jul 18, 2024
1 parent aaf5c37 commit 74c9199
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,20 @@ jobs:

- name: Run tests with all features
run: cargo test --all-features

check:
if: always()

needs:
- rustfmt
- clippy
- test

runs-on: ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
allowed-failures: rustfmt
jobs: ${{ toJSON(needs) }}

0 comments on commit 74c9199

Please sign in to comment.