We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51fdb7e commit 83e9823Copy full SHA for 83e9823
.github/workflows/ci.yml
@@ -44,3 +44,15 @@ jobs:
44
run: bundle exec rake test:acceptance RUBYOPT="${{ matrix.rubyopt }}"
45
timeout-minutes: 10
46
if: ${{ matrix.rails != 'edge' && matrix.ruby != 'head' }} # Acceptance tests use `gem install rails && rails new`
47
+
48
+ summary:
49
+ runs-on: ubuntu-latest
50
+ needs: tests
51
+ if: always()
52
+ steps:
53
+ - name: Check test matrix results
54
+ run: |
55
+ if [ "${{ needs.tests.result }}" != "success" ]; then
56
+ echo "Tests failed or were cancelled"
57
+ exit 1
58
+ fi
0 commit comments