Skip to content

Fix RuboCop 1.65 compatability (#16) #17

Fix RuboCop 1.65 compatability (#16)

Fix RuboCop 1.65 compatability (#16) #17

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
name: "Ruby ${{ matrix.ruby }}: run rspec"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rspec
rubocop:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
name: "Ruby ${{ matrix.ruby }}: run rubocop"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rubocop