File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ jobs:
122
122
ruby-version : ruby
123
123
bundler-cache : true
124
124
125
- - run : bundle exec rake rubocop
125
+ - run : bundle exec rake ruby: rubocop
126
126
127
127
- name : Slack Notification (not success)
128
128
uses : act10ns/slack@v2
Original file line number Diff line number Diff line change 2
2
3
3
require "rubocop/rake_task"
4
4
5
- RuboCop ::RakeTask . new
5
+ RuboCop ::RakeTask . new ( "ruby:rubocop" )
6
6
7
7
namespace :ruby do
8
8
namespace :example do
@@ -30,7 +30,7 @@ namespace :ruby do
30
30
end
31
31
32
32
desc "Run all build tasks in ruby"
33
- task build_all : %w[ example:build rbs ]
33
+ task build_all : %w[ example:build rubocop rbs ]
34
34
end
35
35
36
36
# @return [Hash<String, String>]
@@ -129,6 +129,6 @@ task release: :tag do
129
129
sh "git push origin main"
130
130
end
131
131
132
- task build_all : %w[ ruby:build_all go:build_all rubocop ruby_h_to_go:test patch_for_go_gem:test ]
132
+ task build_all : %w[ ruby:build_all go:build_all ruby_h_to_go:test patch_for_go_gem:test ]
133
133
134
134
task default : :build_all
You can’t perform that action at this time.
0 commit comments