1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #37809 from yahonda/split_bundle_install_and_rubocop

Easy to show `bundle exec rubocop` output at GitHub Actions
This commit is contained in:
Ryuta Kamizono 2019-11-27 10:28:51 +09:00 committed by GitHub
commit e3ed320cb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,8 +23,9 @@ jobs:
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gem-
- name: Build and run RuboCop
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle exec rubocop --parallel
- name: Run RuboCop
run: bundle exec rubocop --parallel