Skip to content

CI: add JRuby 9.4 to the test matrix #90

CI: add JRuby 9.4 to the test matrix

CI: add JRuby 9.4 to the test matrix #90

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ruby_version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "jruby-9.4"]
experimental: [false]
include:
- ruby_version: "ruby-head"
experimental: true
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- run: "bundle exec rubocop lib/ spec/"
- run: "bundle exec rspec spec/ -b"