Skip to content

Add support for Ruby >=4.0 #26

Add support for Ruby >=4.0

Add support for Ruby >=4.0 #26

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.4', '4.0', head, jruby, jruby-head ]
os: [ ubuntu ]
name: >-
${{matrix.os}}-ruby-${{matrix.ruby}}
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.ruby == 'head' || matrix.ruby == 'jruby-head'}}
steps:
- name: Check out
uses: actions/checkout@master
- name: Set up ruby and bundle
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run test
run: bundle exec rake test