Speed up rubocop execution

This commit is contained in:
Sebastian Serth
2021-05-20 14:51:55 +02:00
parent 7be691170e
commit 0f6023c607
2 changed files with 6 additions and 1 deletions

View File

@ -99,4 +99,4 @@ jobs:
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop
run: bundle exec rubocop --parallel

View File

@ -22,3 +22,8 @@ AllCops:
- 'bin/*'
- 'db/schema.rb'
- 'vendor/**/*'
# Ignore local files for faster processing
- 'tmp/**/*'
- 'out/**/*'
- 'node_modules/**/*'
- 'coverage/**/*'