Skip to content

Update to be frozen string literal safe #34

Update to be frozen string literal safe

Update to be frozen string literal safe #34

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
env:
RUBYOPT: ${{ matrix.ruby == 'ruby-head' && '--enable=frozen-string-literal' || '' }}
run: bundle exec rspec