Skip to content

chore: Update rubocop requirement from = 1.63.1 to = 1.63.2 (#1025) #322

chore: Update rubocop requirement from = 1.63.1 to = 1.63.2 (#1025)

chore: Update rubocop requirement from = 1.63.1 to = 1.63.2 (#1025) #322

Workflow file for this run

name: rubocop
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: [3.0, 3.1, 3.2, 3.3]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run rubocop
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake test