Skip to content

Update to Checkout V4 #46

Update to Checkout V4

Update to Checkout V4 #46

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
ruby: [jruby, 2.3, 2.4, 2.5, 2.6, 2.7, 3.2]
os: [ubuntu-latest]
rubyopt: [""]
include:
- ruby: 2.7
os: ubuntu-latest
rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build
run: bundle install --jobs 4 --retry 3
- name: Test
env:
RUBYOPT: ${{ matrix.rubyopt }}
run: bundle exec rake test