Skip to content

Bump supported versions to >= 7 and < 9 #563

Bump supported versions to >= 7 and < 9

Bump supported versions to >= 7 and < 9 #563

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- "README.md"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "3.3.6"
- run: bundle exec rubocop
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
gemfile:
- rails_7
- rails_7_1
- rails_7_2
- rails_8
- rails_main
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rake test