Skip to content

Commit 1f9c6b8

Browse files
fix: make output is garbled up by linting/formatting/testing
1 parent 50b2460 commit 1f9c6b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.sage/main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ func main() {
2929
}
3030

3131
func Default(ctx context.Context) error {
32-
sg.Deps(ctx, ConvcoCheck, GoFormat, GoLint, GoTest, FormatMarkdown, FormatYaml, BackstageValidate)
32+
sg.Deps(ctx, ConvcoCheck, GoFormat, FormatMarkdown, FormatYaml, BackstageValidate)
33+
sg.Deps(ctx, GoLint)
34+
sg.SerialDeps(ctx, GoTest)
3335
sg.SerialDeps(ctx, GoModTidy)
3436
sg.SerialDeps(ctx, GoLicenses, GitVerifyNoDiff, GoPls)
3537
return nil

0 commit comments

Comments
 (0)