File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 6
6
name : lint
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v2
9
+ - uses : actions/setup-go@v3
10
+ with :
11
+ go-version : ' 1.17'
12
+ - uses : actions/checkout@v3
10
13
- name : golangci-lint
11
- uses : golangci/golangci-lint-action@v2
14
+ uses : golangci/golangci-lint-action@v3
12
15
with :
13
- # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
14
- version : v1.49
16
+ # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
17
+ version : v1.29
15
18
16
19
# Optional: working directory, useful for monorepos
17
20
# working-directory: somedir
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ setup_file() {
26
26
}
27
27
28
28
teardown_file () {
29
+ rm * _profile_listen_addr
29
30
kill -9 $GOC_PID
30
31
}
31
32
You can’t perform that action at this time.
0 commit comments