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 9a1bfdf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,15 @@ jobs:
bundler: "1.17.3"
bundler-cache: true
- run: bundle exec rake test
spec_all:
name: "Test / 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 9a1bfdf

Please sign in to comment.