Skip to content

Release version 4.0.0 (drops support for Ruby < 3.1) #370

Release version 4.0.0 (drops support for Ruby < 3.1)

Release version 4.0.0 (drops support for Ruby < 3.1) #370

Workflow file for this run

name: RuboCop
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
rubocop:
name: Rubocop
runs-on: ${{ matrix.os }}
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
strategy:
matrix:
os: [ubuntu-latest]
ruby-version: ["3.1"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
rubygems: latest
- name: Ruby linter
run: bundle exec bin/rubocop