Skip to content

Update rubocop requirement from ~> 1.48.1 to ~> 1.63.1 #51

Update rubocop requirement from ~> 1.48.1 to ~> 1.63.1

Update rubocop requirement from ~> 1.48.1 to ~> 1.63.1 #51

Workflow file for this run

name: tests
on:
push:
branches:
- "master"
pull_request:
jobs:
tests:
strategy:
matrix:
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "${{ matrix.ruby-version }}"
- name: Run tests
run: bundle exec rspec
- name: Run rubocop
run: bundle exec rubocop --parallel --extra-details --display-style-guide