Skip to content

Allow to use Rails 7.2 #55

Allow to use Rails 7.2

Allow to use Rails 7.2 #55

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
test:
name: Tests with Ruby ${{ matrix.ruby-version }} Rails ${{ matrix.rails }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- 2.7
- '3.0'
- 3.1
- 3.2
- 3.3
rails:
- '6.1.5'
- '7.0.2.3'
- '7.1.0'
- '7.2.0.rc1'
exclude:
- ruby: 2.7

Check failure on line 25 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 25, Col: 11): Matrix exclude key 'ruby' does not match any key within the matrix .github/workflows/build.yml (Line: 27, Col: 11): Matrix exclude key 'ruby' does not match any key within the matrix
rails: '7.2.0.rc1'
- ruby: '3.0'
rails: '7.2.0.rc1'
env:
RAILS_VERSION: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: |
bundle exec rake