Skip to content

Fix compatibility with --frozen-string-literal #324

Fix compatibility with --frozen-string-literal

Fix compatibility with --frozen-string-literal #324

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
rubyopt: [""]
include:
- ruby-version: '3.3'
rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal"
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby-version }}"
bundler-cache: true
- run: bundle exec rake RUBYOPT="${{ matrix.rubyopt}}"