Skip to content

chore: remove experimental from CI #33

chore: remove experimental from CI

chore: remove experimental from CI #33

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [2.7, 3.0, 3.1, 3.2, 3.3, ruby-head, jruby-9.2, jruby-9.3, jruby-head]
channel: ['stable']
continue-on-error: ${{ endsWith(matrix.ruby-version, 'ruby-head') || matrix.ruby-version == 'jruby-head' }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # 'bundle install' and cache gems
ruby-version: ${{ matrix.ruby-version }}
- name: Run tests
run: bundle exec rspec