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
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,15 @@ jobs:
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

# Single stable status check for the whole test matrix, so branch protection
# doesn't need updating every time the OS/Python matrix changes.
all-tests-passed:
name: All Tests Passed
if: always()
needs: [tests]
runs-on: ubuntu-latest
steps:
- name: Fail if any matrix job did not succeed
if: needs.tests.result != 'success'
run: exit 1
12 changes: 12 additions & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@ jobs:

- name: Check typing using mypy
run: uv run --no-default-groups --group validate mypy .

# Single stable status check for the whole type-check matrix, so branch
# protection doesn't need updating every time the Python matrix changes.
all-type-checks-passed:
name: All Type Checks Passed
if: always()
needs: [type-check]
runs-on: ubuntu-latest
steps:
- name: Fail if any matrix job did not succeed
if: needs['type-check'].result != 'success'
run: exit 1
Loading