Skip to content

Commit

Permalink
Add final job to ci.yml that passes when all other ci.yml jobs pass
Browse files Browse the repository at this point in the history
Allows us to require this job to pass as a proxy for all ci.yml jobs
before merging PRs.
  • Loading branch information
dconnolly committed Mar 21, 2021
1 parent b835a04 commit 1572289
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ on:

jobs:

ci-passing:
name: CI ✅
runs-on: ubuntu-latest
needs:
- test
- build
- build-chain-no-features
- clippy
- fmt
steps:
- run: exit 0

test:
name: Test (+${{ matrix.rust }}) on ${{ matrix.os }}
# The large timeout is to accommodate Windows builds
Expand Down

0 comments on commit 1572289

Please sign in to comment.