19
19
name : Static analysis on Python ${{ matrix.python-version }}
20
20
runs-on : ubuntu-latest
21
21
needs : set-matrix
22
- continue-on-error : true
23
22
strategy :
23
+ fail-fast : false # Ensure all matrix jobs run to completion
24
24
matrix :
25
25
python-version : ${{ fromJSON(needs.set-matrix.outputs.python_versions) }}
26
26
42
42
name : Testing on Python ${{ matrix.python-version }}
43
43
runs-on : ubuntu-latest
44
44
needs : set-matrix
45
- continue-on-error : true
46
45
strategy :
46
+ fail-fast : false # Ensure all matrix jobs run to completion
47
47
matrix :
48
48
python-version : ${{ fromJSON(needs.set-matrix.outputs.python_versions) }}
49
49
@@ -62,15 +62,31 @@ jobs:
62
62
run : make coverage
63
63
64
64
check-static-and-test-status :
65
- name : Check if all jobs passed
65
+ name : Verify All Jobs Succeeded
66
66
runs-on : ubuntu-latest
67
67
needs : [ static, test ] # Ensure all jobs complete before checking
68
68
if : always() # This ensures the job runs even if previous jobs failed
69
69
70
70
steps :
71
- - name : Fail if any job failed
71
+ - name : Check Job Results
72
72
run : |
73
- if [ "${{ needs.static.result }}" == "failure" ] || [ "${{ needs.test.result }}" == "failure" ]; then
73
+ # Initialize a flag to track failures
74
+ FAILED=0
75
+
76
+ # Check the result of the 'static' job
77
+ if [ "${{ needs.static.result }}" == "failure" ]; then
78
+ echo "Static analysis job failed."
79
+ FAILED=1
80
+ fi
81
+
82
+ # Check the result of the 'test' job
83
+ if [ "${{ needs.test.result }}" == "failure" ]; then
84
+ echo "Test job failed."
85
+ FAILED=1
86
+ fi
87
+
88
+ # Exit with status 1 if any job failed
89
+ if [ "$FAILED" -ne 0 ]; then
74
90
echo "One or more jobs failed."
75
91
exit 1
76
92
else
0 commit comments