Skip to content

Commit

Permalink
No need to run RuboCop on non-MRI implementations
Browse files Browse the repository at this point in the history
* This should speed up CI a bit for those jobs.
  • Loading branch information
eregon committed Mar 24, 2020
1 parent ae98fa9 commit 122a1ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ruby.yml
Expand Up @@ -42,9 +42,13 @@ jobs:
- name: compile
run: bundle exec rake compile

- name: rubocop
run: bundle exec rake rubocop
if: startsWith(matrix.ruby, '2.')

- name: test
timeout-minutes: 8
run: bundle exec rake
run: bundle exec rake test:all

win32:
name: >-
Expand Down

0 comments on commit 122a1ee

Please sign in to comment.