Skip to content

Commit

Permalink
ci: Add result test step (#7345)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Sep 30, 2024
1 parent 88fb969 commit e5450ef
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,13 @@ jobs:
- name: Test Type
run: |
pixi run -e ${{ matrix.environment }} test-type || echo "Failed"
result_test_suite:
name: result:test
needs: [unit_test_suite, ui_test_suite, core_test_suite, type_test_suite]
if: always()
runs-on: ubuntu-latest
steps:
- name: check for failures
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: echo job failed && exit 1

0 comments on commit e5450ef

Please sign in to comment.