Skip to content

Commit d084511

Browse files
committed
some gh workflow improvement
1 parent 3b8b00d commit d084511

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/main.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,26 @@ jobs:
6161
- name: Run
6262
run: make coverage
6363

64+
check-static-and-test-status:
65+
name: Check if all jobs passed
66+
runs-on: ubuntu-latest
67+
needs: [ static, test ] # Ensure all jobs complete before checking
68+
if: always() # This ensures the job runs even if previous jobs failed
69+
70+
steps:
71+
- name: Fail if any job failed
72+
run: |
73+
if [ "${{ needs.static.result }}" == "failure" ] || [ "${{ needs.test.result }}" == "failure" ]; then
74+
echo "One or more jobs failed."
75+
exit 1
76+
else
77+
echo "All jobs passed successfully."
78+
fi
79+
6480
deploy:
6581
name: Build and publish to PyPI
6682

67-
needs: [ static, test ]
83+
needs: check-static-and-test-status
6884

6985
if: contains(github.ref, 'tags/v')
7086

0 commit comments

Comments
 (0)