Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/seth-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
src:
- 'seth/**'
test:
# TODO: uncomment once we have changed required checks in the repo to not include each test
# if: needs.changes.outputs.src == 'true'
if: needs.changes.outputs.src == 'true'
needs: changes
strategy:
Comment thread
Tofel marked this conversation as resolved.
fail-fast: false
Expand Down Expand Up @@ -134,7 +133,7 @@ jobs:
steps:
- name: Require all matrix jobs passed
run: |
if [ "${{ needs.test.result }}" != "success" ]; then
if [ "${{ needs.test.result }}" != "skipped" ] && [ "${{ needs.test.result }}" != "success" ]; then
echo "::error::One or more Seth test matrix jobs failed or were cancelled."
exit 1
fi
Expand Down
Loading