Skip to content

4.0.1

4.0.1 #9

Workflow file for this run

name: Rubocop
on:
pull_request:
types: [ opened, reopened, synchronize ]
workflow_dispatch:
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
- name: Install dependencies
run: bundle install
- name: Run Rubocop
run: bundle exec rubocop --parallel