We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf554ca commit 886d6d9Copy full SHA for 886d6d9
1 file changed
.github/workflows/unittest.yml
@@ -86,6 +86,12 @@ jobs:
86
steps:
87
- name: Check unit test results
88
run: |
89
+ # 1. Check initialize job
90
+ if [[ "${{ needs.initialize.result }}" != "success" ]]; then
91
+ echo "Error: The initialize job status was: ${{ needs.initialize.result }}"
92
+ exit 1
93
+ fi
94
+ # 2. Check unit test shards
95
if [[ "${{ needs.unit.result }}" != "success" && "${{ needs.unit.result }}" != "skipped" ]]; then
96
echo "Unit tests failed"
97
exit 1
0 commit comments