Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,3 +268,14 @@ jobs:
fi
pytest -rxXs tests_cython
popd

checks:
name: Check job status
permissions:
checks: read
needs:
- build
- test
secrets: inherit
uses:
./.github/workflows/status-check.yml
16 changes: 16 additions & 0 deletions .github/workflows/status-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "CI: Summary"

on:
workflow_call:

jobs:
checks:
name: Check job status
runs-on: ubuntu-latest
steps:
- name: GitHub Checks
uses: poseidon/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
match_pattern: "CI*"
ignore_pattern: ".*Check job status.*" # ignore self
Loading