Skip to content

Commit

Permalink
ci: use a single ci-pass job that depends on the rest (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Dec 11, 2023
1 parent eff3e3a commit 2c6dfdd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -9,6 +9,19 @@ env:
RUST_BACKTRACE: 1

jobs:
ci-pass:
name: CI is green
runs-on: ubuntu-latest
needs:
- style
- test
- msrv
- wasm
- minimal-versions
- miri
steps:
- run: exit 0

style:
name: Check Style
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2c6dfdd

Please sign in to comment.