Skip to content

Commit bc31082

Browse files
authored
add a summary job check for easier automated gating (#6)
1 parent 7f0060a commit bc31082

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -275,3 +275,17 @@ jobs:
275275
with:
276276
path: dist
277277
if-no-files-found: error
278+
279+
check:
280+
if: always()
281+
needs:
282+
- sdist
283+
- linux
284+
- macos
285+
- windows
286+
runs-on: ubuntu-latest
287+
steps:
288+
- name: Verify all previous jobs succeeded (provides a single check to sample for gating purposes)
289+
uses: re-actors/alls-green@release/v1
290+
with:
291+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)