Skip to content

Commit

Permalink
Easy to show bundle exec rubocop output at Action
Browse files Browse the repository at this point in the history
When pull requests have RuboCop offenses they need to click
"Build and run RuboCop" section and scroll about 200 lines
to skip `bundle install` output.

This change splits "Build and run RuboCop" into two parts.
then "Run RuboCop" section only shows `bundle exec rubocop --parallel`
output
  • Loading branch information
yahonda committed Nov 27, 2019
1 parent 3d0a782 commit 4ba2a9b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rubocop.yml
Expand Up @@ -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

0 comments on commit 4ba2a9b

Please sign in to comment.