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 0005bdc commit 7ac7e23Copy full SHA for 7ac7e23
.github/workflows/test.yml
@@ -39,6 +39,7 @@ jobs:
39
- run: sudo apt-get install -y universal-ctags
40
41
- run: bundle exec rspec
42
+ - run: bundle exec rubocop
43
44
- name: Slack Notification (not success)
45
uses: act10ns/slack@v2
Rakefile
@@ -5,4 +5,8 @@ require "rspec/core/rake_task"
5
6
RSpec::Core::RakeTask.new(:spec)
7
8
+require "rubocop/rake_task"
9
+
10
+RuboCop::RakeTask.new
11
12
task default: :spec
0 commit comments