We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b8b00d commit d084511Copy full SHA for d084511
.github/workflows/main.yml
@@ -61,10 +61,26 @@ jobs:
61
- name: Run
62
run: make coverage
63
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
80
deploy:
81
name: Build and publish to PyPI
82
- needs: [ static, test ]
83
+ needs: check-static-and-test-status
84
85
if: contains(github.ref, 'tags/v')
86
0 commit comments