ci: use fail-fast: false instead of continue-on-error: true

This will give us proper red/green signal on the test suite while
still running the entire matrix.
This commit is contained in:
Mike Dalessio
2025-01-20 18:53:48 -05:00
parent 5f04e4266b
commit 3c01dc75fd

View File

@@ -23,6 +23,7 @@ jobs:
run: bundle exec rubocop --parallel
tests:
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.1"
@@ -37,7 +38,6 @@ jobs:
gemfile: gemfiles/rails_edge.gemfile
name: ${{ format('Tests (Ruby {0})', matrix.ruby-version) }}
runs-on: ubuntu-latest
continue-on-error: true
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps: