Skip to content

Commit

Permalink
ci: Add all tests pass job (#1069)
Browse files Browse the repository at this point in the history
Add a job that only finished if all tests pass. This will be configured as a required test to make sure all jobs pass on every commit.
  • Loading branch information
caspermeijn authored May 22, 2024
1 parent b925a4f commit 993a6d1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@ env:
PROTOC_VERSION: 3.20.3

jobs:
# Depends on all actions that are required for a "successful" CI run.
tests-pass:
name: all systems go
runs-on: ubuntu-latest
needs:
- rustfmt
- toml_validation
- clippy
- machete
- unused_dependencies
- test
- msrv
- minimal-versions
- kani
- no-std
steps:
- run: exit 0

rustfmt:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 993a6d1

Please sign in to comment.