Skip to content

Add Ruby 3.4.0-preview1 to CI matrix; remove unsupported Rubies #60

Add Ruby 3.4.0-preview1 to CI matrix; remove unsupported Rubies

Add Ruby 3.4.0-preview1 to CI matrix; remove unsupported Rubies #60

Workflow file for this run

name: CI
on: [push,pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.7, '3.0', 3.1, 3.2, 3.3, '3.4.0-preview1', jruby, truffleruby]
runs-on: ${{ matrix.os }}
name: Test against ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run specs
run: bundle exec rspec spec --backtrace