Skip to content

run test in prism 0.14 and 0.15 #261

run test in prism 0.14 and 0.15

run test in prism 0.14 and 0.15 #261

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['head', '3.2', '3.1', '3.0']
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle install
- run: bundle exec rake test
test-prism:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: 'head'

Check failure on line 23 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: 23, Col: 15): Unexpected value 'head'
gemfiles:
- gemfiles/Gemfile-prism-0.14
- gemfiles/Gemfile-prism-0.15
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle install --gemfile ${{ matrix.gemfiles }} --jobs 4 --retry 3
- run: bundle exec --gemfile ${{ matrix.gemfiles }} rake test