File tree 2 files changed +1
-11
lines changed
2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 9
9
"go.einride.tech/sage/tools/sggo"
10
10
"go.einride.tech/sage/tools/sggolangcilint"
11
11
"go.einride.tech/sage/tools/sggolicenses"
12
- "go.einride.tech/sage/tools/sggoreview"
13
12
"go.einride.tech/sage/tools/sgmdformat"
14
13
"go.einride.tech/sage/tools/sgyamlfmt"
15
14
)
@@ -25,7 +24,7 @@ func main() {
25
24
26
25
func Default (ctx context.Context ) error {
27
26
sg .Deps (ctx , ConvcoCheck , FormatMarkdown , FormatYaml )
28
- sg .Deps (ctx , GoLint , GoReview )
27
+ sg .Deps (ctx , GoLint )
29
28
sg .Deps (ctx , GoTest )
30
29
sg .Deps (ctx , GoModTidy )
31
30
sg .Deps (ctx , GoLicenses , GitVerifyNoDiff )
@@ -42,11 +41,6 @@ func GoTest(ctx context.Context) error {
42
41
return sggo .TestCommand (ctx ).Run ()
43
42
}
44
43
45
- func GoReview (ctx context.Context ) error {
46
- sg .Logger (ctx ).Println ("reviewing Go files..." )
47
- return sggoreview .Run (ctx )
48
- }
49
-
50
44
func GoLint (ctx context.Context ) error {
51
45
sg .Logger (ctx ).Println ("linting Go files..." )
52
46
return sggolangcilint .Run (ctx )
Original file line number Diff line number Diff line change @@ -75,10 +75,6 @@ go-lint: $(sagefile)
75
75
go-mod-tidy : $(sagefile )
76
76
@$(sagefile ) GoModTidy
77
77
78
- .PHONY : go-review
79
- go-review : $(sagefile )
80
- @$(sagefile ) GoReview
81
-
82
78
.PHONY : go-test
83
79
go-test : $(sagefile )
84
80
@$(sagefile ) GoTest
You can’t perform that action at this time.
0 commit comments