Skip to content

Commit

Permalink
add a summary job check for easier automated gating (python-cffi#6)
Browse files Browse the repository at this point in the history
(cherry picked from commit bc31082)
  • Loading branch information
nitzmahone committed Sep 26, 2023
1 parent c062f2c commit 4d3173b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,17 @@ jobs:
with:
path: dist
if-no-files-found: error

check:
if: always()
needs:
- sdist
- linux
- macos
- windows
runs-on: ubuntu-latest
steps:
- name: Verify all previous jobs succeeded (provides a single check to sample for gating purposes)
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit 4d3173b

Please sign in to comment.