Skip to content

Commit a9aee67

Browse files
MAINT: Add all checks passed GHA job (#17)
1 parent 3976801 commit a9aee67

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,3 +160,17 @@ jobs:
160160
echo "Environment not installed"
161161
exit 1
162162
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

Comments
 (0)