Skip to content

Various compatibility fixes for the 3.x branch #211

Various compatibility fixes for the 3.x branch

Various compatibility fixes for the 3.x branch #211

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: ${{ matrix.ruby }}
strategy:
matrix:
experimental: [false]
ruby:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
rubyopt: [""]
include:
- { ruby: "3.3", rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal", experimental: false }
- { ruby: head, experimental: true }
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests ${{ matrix.rubyopt }}
timeout-minutes: 10
run: bundle exec rake RUBYOPT="${{ matrix.rubyopt }}"