1
0
Fork 0
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:
Kyrylo Silin 2021-07-04 22:46:31 +03:00
parent f584bd06ab
commit ca372a5b75

View file

@ -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: |