Skip to content

Working (?) tests

Working (?) tests #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.1', '3.2', '3.3' ]
gemfile: [ 'gemfiles/rails_6.1.gemfile', 'gemfiles/rails_7.0.gemfile', 'gemfiles/rails_7.1.gemfile' ]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: |
gem install bundler
bundle install --gemfile ${{ matrix.gemfile }}
- name: Run tests
run: |

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 23, Col: 14): Unexpected symbol: '|'. Located at position 16 within expression: matrix.gemfile | split: '/' | last | split: '.' | first
bundle exec appraisal ${{ matrix.gemfile | split: '/' | last | split: '.' | first }} rspec