mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
.github/workflows/test: fix Rubocop linting
It wasn't running.
This commit is contained in:
parent
f584bd06ab
commit
ca372a5b75
1 changed files with 5 additions and 1 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Add table
Reference in a new issue