Skip to content

[eloot] v2.1.4 rework coin bag logic to reduce excessive inspect calls #3199

[eloot] v2.1.4 rework coin bag logic to reduce excessive inspect calls

[eloot] v2.1.4 rework coin bag logic to reduce excessive inspect calls #3199

name: Rubocop
on:
push:
branches:
- master
paths:
- 'scripts/**'
- 'type_data/migrations/**'
pull_request:
paths:
- 'scripts/**'
- 'type_data/migrations/**'
jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.3']
name: Run Rubocop on Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
with:
files: |
**/*.lic
**/*.rb
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install ruby gem dependencies with bundler
run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- run: bundle install
- name: Rubocop
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
bundle exec rubocop $file
done