Skip to content

Add build for Rails 7.1 #10

Add build for Rails 7.1

Add build for Rails 7.1 #10

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby: [3.3]
gemfile: [activerecord-6.0.Gemfile, activerecord-6.1.Gemfile, activerecord-7.0.Gemfile, activerecord-7.1.Gemfile]
exclude:

Check failure on line 15 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 15, Col: 17): Unexpected value ''
env:
BUNDLE_GEMFILE: gemfiles/${{matrix.gemfile}}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # Also installs gems
- name: Run tests
run: bundle exec rake test