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 c15eb7c commit 8037796Copy full SHA for 8037796
.github/workflows/lint-and-test.yml
@@ -39,3 +39,17 @@ jobs:
39
python: ${{ matrix.python }}
40
- name: Test
41
run: tox
42
+ validation:
43
+ name: Validation
44
+ runs-on: ubuntu-latest
45
+ needs: [test]
46
+ if: always()
47
+ steps:
48
+ - name: Validate matrix test success
49
+ run: |
50
+ # Check the status of the 'test' job (which includes all matrix variations)
51
+ if [ "${{ needs.test.result }}" != "success" ]; then
52
+ echo "One or more matrix test jobs failed."
53
+ exit 1
54
+ fi
55
+ echo "All matrix test jobs passed."
0 commit comments