Skip to content

Release 0.9.0

Release 0.9.0 #853

Workflow file for this run

name: RuboCop
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Ruby 4.0
uses: ruby/setup-ruby@v1
with:
ruby-version: "4.0"
- name: Build and run RuboCop
run: |
BUNDLE_ONLY=rubocop bundle install --jobs 4 --retry 3
BUNDLE_ONLY=rubocop bundle exec rubocop --parallel