Skip to content

Commit

Permalink
ci: Make the std extensions job a required check (#1519)
Browse files Browse the repository at this point in the history
As proposed in #1518
  • Loading branch information
aborgna-q authored Sep 4, 2024
1 parent 60e1da0 commit 6bc5593
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:
# even if they are skipped due to no changes in the relevant files.
required-checks:
name: Required checks 🦀
needs: [changes, check, tests-stable-no-features, tests-stable-all-features]
needs: [changes, check, tests-stable-no-features, tests-stable-all-features, std-extensions]
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
Expand All @@ -226,7 +226,8 @@ jobs:
needs.changes.result == 'failure' || needs.changes.result == 'cancelled' ||
needs.check.result == 'failure' || needs.check.result == 'cancelled' ||
needs.tests-stable-no-features.result == 'failure' || needs.tests-stable-no-features.result == 'cancelled' ||
needs.tests-stable-all-features.result == 'failure' || needs.tests-stable-all-features.result == 'cancelled'
needs.tests-stable-all-features.result == 'failure' || needs.tests-stable-all-features.result == 'cancelled' ||
needs.std-extensions.result == 'failure' || needs.std-extensions.result == 'cancelled'
run: |
echo "Required checks failed"
echo "Please check the logs for more information"
Expand Down

0 comments on commit 6bc5593

Please sign in to comment.