Skip to content

Add ruby 3.2 to the test matrix #40

Add ruby 3.2 to the test matrix

Add ruby 3.2 to the test matrix #40

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7
- 3.2
rails_version:
- 5.2.8.1
- 6.0.5.1
- 6.1.6.1
- 7.0.3.1
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
env:
RAILS_VERSION: ${{ matrix.rails_version }}
- name: Run tests
run: bundle exec rake
env:
RAILS_VERSION: ${{ matrix.rails_version }}