Skip to content

Require Ruby >=2.0 to cover Ruby 3.0 compatible JRuby versions #36

Require Ruby >=2.0 to cover Ruby 3.0 compatible JRuby versions

Require Ruby >=2.0 to cover Ruby 3.0 compatible JRuby versions #36

Workflow file for this run

name: JRuby CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
ruby: [ jruby-9.1.17.0, jruby-9.2.20.1, jruby-9.3.13.0, jruby-9.4.5.0]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run Tests
run: bundle exec rake default