Skip to content

Add Ruby 3.0, 3.1, 3.2 to CI matrix (#91) #135

Add Ruby 3.0, 3.1, 3.2 to CI matrix (#91)

Add Ruby 3.0, 3.1, 3.2 to CI matrix (#91) #135

Workflow file for this run

name: ci
on: [push,pull_request]
jobs:
test:
strategy:
matrix:
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
runs-on: ubuntu-latest
env:
BUNDLE_PATH: ${{ github.workspace }}/vendor/bundle
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Unit Test w/ RSpec
run: bundle exec rspec