Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit 8ef374c

Browse files
committed
just testing
1 parent 93bb034 commit 8ef374c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@ go run app/scripts/emulate_webhook/main.go --repo golangci/golangci-worker --pr
8181
## Contributing
8282

8383
See [CONTRIBUTING](https://github.com/golangci/golangci-worker/blob/master/CONTRIBUTING.md).
84+

app/analyze/linters/linter.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package linters
22

33
import (
44
"context"
5+
"fmt"
56

67
"github.com/golangci/golangci-worker/app/analyze/linters/result"
78
"github.com/golangci/golangci-worker/app/lib/executors"
@@ -13,3 +14,11 @@ type Linter interface {
1314
Run(ctx context.Context, exec executors.Executor) (*result.Result, error)
1415
Name() string
1516
}
17+
18+
func Test() {
19+
if true {
20+
return
21+
} else {
22+
fmt.Printf("ssd")
23+
}
24+
}

0 commit comments

Comments
 (0)