Skip to content

Remove tests for EOL versions of Ruby and Rails #18

Remove tests for EOL versions of Ruby and Rails

Remove tests for EOL versions of Ruby and Rails #18

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
rails:
- "6.1"
- "7.0"
- "7.1"
- main
exclude:
- ruby: 3.0
rails: main
runs-on: 'ubuntu-latest'
env:
BUNDLE_GEMFILE: gemfiles/Gemfile.activerecord-${{ matrix.rails }}.x
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup project
run: bundle install
- name: Run test
run: bundle exec rspec spec