We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22fa2cc commit df3f6f3Copy full SHA for df3f6f3
.github/workflows/test.yml
@@ -63,3 +63,15 @@ jobs:
63
- name: Run tests
64
run: |
65
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