Skip to content

Drop support for Ruby 3.1 #60

Drop support for Ruby 3.1

Drop support for Ruby 3.1 #60

Workflow file for this run

name: Test
on:
pull_request:
push: { branches: master }
jobs:
test:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2', '3.3', '3.4', 'head']
include:
- ruby: head
allow_failure: true
continue-on-error: ${{ matrix.allow_failure == true }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install OS dependencies
run: sudo apt-get -y install libyaml-dev
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '${{ matrix.ruby }}'
bundler-cache: true
- name: Run tests
run: bundle exec rspec