Skip to content

Generalize to ruby 4.0. #116

Generalize to ruby 4.0.

Generalize to ruby 4.0. #116

Workflow file for this run

name: Ruby
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.1', '3.2', '3.3', '3.4', '4.0' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@d697be2f83c6234b20877c3b5eac7a7f342f0d0c
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test
run: |
bundle install --jobs 4 --retry 3
find ./spec/fixtures -type f -exec chmod 600 -- {} +
bundle exec rspec