Skip to content

Commit df3f6f3

Browse files
add final tests job to check test matrix (#95)
1 parent 22fa2cc commit df3f6f3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,15 @@ jobs:
6363
- name: Run tests
6464
run: |
6565
uv run noxfile.py --session "tests(python='${{ matrix.python-version }}', django='${{ matrix.django-version }}')"
66+
67+
tests:
68+
runs-on: ubuntu-latest
69+
needs: test
70+
if: always()
71+
steps:
72+
- name: OK
73+
if: ${{ !(contains(needs.*.result, 'failure')) }}
74+
run: exit 0
75+
- name: Fail
76+
if: ${{ contains(needs.*.result, 'failure') }}
77+
run: exit 1

0 commit comments

Comments
 (0)