Skip to content

Commit 3052c5d

Browse files
committed
Move to rake ruby:rubocop
1 parent 1c0c9c5 commit 3052c5d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
ruby-version: ruby
123123
bundler-cache: true
124124

125-
- run: bundle exec rake rubocop
125+
- run: bundle exec rake ruby:rubocop
126126

127127
- name: Slack Notification (not success)
128128
uses: act10ns/slack@v2

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require "rubocop/rake_task"
44

5-
RuboCop::RakeTask.new
5+
RuboCop::RakeTask.new("ruby:rubocop")
66

77
namespace :ruby do
88
namespace :example do
@@ -30,7 +30,7 @@ namespace :ruby do
3030
end
3131

3232
desc "Run all build tasks in ruby"
33-
task build_all: %w[example:build rbs]
33+
task build_all: %w[example:build rubocop rbs]
3434
end
3535

3636
# @return [Hash<String, String>]
@@ -129,6 +129,6 @@ task release: :tag do
129129
sh "git push origin main"
130130
end
131131

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]
133133

134134
task default: :build_all

0 commit comments

Comments
 (0)