We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3976801 commit a9aee67Copy full SHA for a9aee67
1 file changed
.github/workflows/test.yml
@@ -160,3 +160,17 @@ jobs:
160
echo "Environment not installed"
161
exit 1
162
fi
163
+
164
+ all-checks-passed:
165
+ name: All checks passed
166
+ needs: test-cache-restore-install
167
+ runs-on: ubuntu-slim
168
+ if: always()
169
+ steps:
170
+ - name: Check if all jobs passed
171
+ run: |
172
+ if [ "${{ needs.test-cache-restore-install.result }}" != "success" ]; then
173
+ echo "test-cache-restore-install did not pass"
174
+ exit 1
175
+ fi
176
+ echo "All checks passed successfully"
0 commit comments