summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8ee4e0ff..4dd7ba79 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -21,7 +21,11 @@ jobs:
bundler-cache: true
- name: Rubocop lint
- run: which rubocop && bundle exec rubocop || true
+ run: |
+ if bundle list | grep rubocop
+ then
+ bundle exec rubocop --parallel
+ fi
- name: YARD lint
run: |