Skip to content

Support Rails 7.1

Support Rails 7.1 #62

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7.5"
- "3.0.3"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rspec
run: bundle exec rake test
rubocop:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7.5"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop