Skip to content

Set up matrix builds for different Active Support versions #38

Set up matrix builds for different Active Support versions

Set up matrix builds for different Active Support versions #38

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: [2.7, 3.0, 3.1, 3.2]
gemfile: ["active_support_6", "active_support_7"]
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
cache-version: ${{ matrix.gemfile }}
- run: bundle exec rspec