Skip to content

Merge pull request #35 from m-nakamura145/update-ci-matrix #7

Merge pull request #35 from m-nakamura145/update-ci-matrix

Merge pull request #35 from m-nakamura145/update-ci-matrix #7

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUBYOPT: "--enable=frozen-string-literal"
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: [2.6, 2.7, 3.0, 3.1, 3.2, 3.3, jruby, jruby-head, truffleruby, truffleruby-head]
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # Runs also bundle install
- name: Run tests
run: bundle exec rake