Skip to content

Commit

Permalink
Roll up all matrix results into 1 spec_legacy_ruby_all job
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed Apr 8, 2024
1 parent 027f65d commit c164f75
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,14 @@ jobs:
bundler: "1.17.3"
bundler-cache: true
- run: bundle exec rake test
spec_legacy_ruby_all:
runs-on: ubuntu-latest
needs: [spec_legacy_ruby, spec_legacy_ruby_19]
if: always()
steps:
- name: All tests ok
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Some tests failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1

0 comments on commit c164f75

Please sign in to comment.