Skip to content

Update build matrix for EOL #106

Update build matrix for EOL

Update build matrix for EOL #106

Workflow file for this run

name: ci
on: push
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
gemfile:
- Gemfile
- spec/support/Gemfile.rails6.1
bundler:
- "2"
exclude:
- ruby: "3.2"
gemfile: spec/support/Gemfile.rails6.1
bundler: "2"
- ruby: "3.2"
gemfile: spec/support/Gemfile.rails7
bundler: "2"
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler: ${{ matrix.bundler }}
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake