Skip to content

Various compatibility fixes for the 3.x branch #207

Various compatibility fixes for the 3.x branch

Various compatibility fixes for the 3.x branch #207

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: ""

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 18): Unexpected value ''
include:
- { ruby: "3.3", rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal" }
- { 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
timeout-minutes: 10
run: bundle exec rake RUBYOPT="${{ matrix.rubyopt }}"