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 9904a0d commit ebcfb7cCopy full SHA for ebcfb7c
Rakefile
@@ -26,6 +26,9 @@ namespace :ruby do
26
sh "rbs validate"
27
sh "steep check"
28
end
29
+
30
+ desc "Run all build tasks in ruby"
31
+ task build_all: %i[build_example rbs]
32
33
34
# @return [Hash<String, String>]
@@ -84,6 +87,9 @@ namespace :go do
84
87
85
88
sh env_vars, "golangci-lint run"
86
89
90
91
+ desc "Run all build tasks in go"
92
+ task build_all: %i[test fmt lint]
93
94
95
namespace :patch_for_go_gem do
@@ -121,4 +127,6 @@ task release: :tag do
121
127
sh "git push origin main"
122
128
123
129
124
-task default: "ruby:build_example"
130
+task build_all: %w[ruby:build_all go:build_all rubocop ruby_h_to_go:test patch_for_go_gem:test]
131
132
+task default: :build_all
0 commit comments