Skip to content

Stop testing on Ruby 2.7 it is past EOL #36

Stop testing on Ruby 2.7 it is past EOL

Stop testing on Ruby 2.7 it is past EOL #36

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rails_version: [6.1.7, 7.0.4]
ruby: ['3.0']
include:
- ruby: 3.1
rails_version: 7.0.4
env:
RAILS_VERSION: ${{ matrix.rails_version }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies with Rails ${{ matrix.rails_version }}
run: bundle install
- name: Run tests
run: bundle exec rake