Skip to content

Added Ruby 3.1 and 3.3 to the build matrix. #15

Added Ruby 3.1 and 3.3 to the build matrix.

Added Ruby 3.1 and 3.3 to the build matrix. #15

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
name: Test (Ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [ '2.7', '3.1', '3.3' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run test
run: bundle exec rake spec