We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59dc17b commit 65cc815Copy full SHA for 65cc815
.circleci/config.yml
@@ -61,6 +61,19 @@ jobs:
61
- image: circleci/ruby:2.6
62
<<: *rubocop
63
64
+ edge-rubocop:
65
+ docker:
66
+ - image: circleci/ruby
67
+ steps:
68
+ - checkout
69
+ - run:
70
+ name: Use latest RuboCop from `master`
71
+ command: |
72
+ echo "gem 'rubocop', github: 'rubocop-hq/rubocop'" > Gemfile.local
73
+ - run: bundle install --no-cache
74
+ - run: rake spec
75
+ - run: rake internal_investigation
76
+
77
# JRuby
78
jruby:
79
docker:
@@ -121,5 +134,7 @@ workflows:
121
134
requires: [confirm_config_and_documentation]
122
135
- ruby-2.6-rubocop:
123
136
137
+ - edge-rubocop:
138
+ requires: [confirm_config_and_documentation]
124
139
- jruby
125
140
- code-climate
0 commit comments