Skip to content

Commit c92038e

Browse files
committed
yet another fix
1 parent d084511 commit c92038e

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

.github/workflows/main.yml

+21-5
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
name: Static analysis on Python ${{ matrix.python-version }}
2020
runs-on: ubuntu-latest
2121
needs: set-matrix
22-
continue-on-error: true
2322
strategy:
23+
fail-fast: false # Ensure all matrix jobs run to completion
2424
matrix:
2525
python-version: ${{ fromJSON(needs.set-matrix.outputs.python_versions) }}
2626

@@ -42,8 +42,8 @@ jobs:
4242
name: Testing on Python ${{ matrix.python-version }}
4343
runs-on: ubuntu-latest
4444
needs: set-matrix
45-
continue-on-error: true
4645
strategy:
46+
fail-fast: false # Ensure all matrix jobs run to completion
4747
matrix:
4848
python-version: ${{ fromJSON(needs.set-matrix.outputs.python_versions) }}
4949

@@ -62,15 +62,31 @@ jobs:
6262
run: make coverage
6363

6464
check-static-and-test-status:
65-
name: Check if all jobs passed
65+
name: Verify All Jobs Succeeded
6666
runs-on: ubuntu-latest
6767
needs: [ static, test ] # Ensure all jobs complete before checking
6868
if: always() # This ensures the job runs even if previous jobs failed
6969

7070
steps:
71-
- name: Fail if any job failed
71+
- name: Check Job Results
7272
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
7490
echo "One or more jobs failed."
7591
exit 1
7692
else

0 commit comments

Comments
 (0)