Skip to content

Commit

Permalink
ci: make a final ci-is-green job
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Jan 6, 2025
1 parent 0988380 commit c66a73a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ on:
- master

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


style:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -51,7 +65,7 @@ jobs:
- uses: taiki-e/install-action@cargo-minimal-versions
- run: cargo minimal-versions check

clippy_check:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit c66a73a

Please sign in to comment.