Skip to content

bump v5.1.0

bump v5.1.0 #28

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version:
- '2.6'
- '2.7'
- '3.0'
rails_version:
- '5.2.6'
- '6.0.4'
- '6.1.4'
- '7.0.0'
exclude:
- ruby_version: '3.0'
rails_version: '5.2.6'
- ruby_version: '2.6'
rails_version: '7.0.0'
name: Ruby ${{ matrix.ruby_version }} / Rails ${{ matrix.rails_version }}
env:
RAILS: ${{ matrix.rails_version }}
steps:
- uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Test
run: bundle exec rspec spec