File tree 2 files changed +18
-12
lines changed
2 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,24 @@ jobs:
16
16
golang :
17
17
- 1.18.x
18
18
steps :
19
- - uses : actions/checkout@v3
20
- - name : Set up Go
21
- uses : actions/setup-go@v2
22
- with :
23
- go-version : ${{ matrix.golang }}
24
- - name : golangci-lint
25
-
26
- with :
27
- go-version : ${{ matrix.golang }}
28
- version : v1.50.1
29
- args : --timeout=10m
30
- # only-new-issues: true
19
+ - name : Checkout
20
+ uses : actions/checkout@v3
21
+
22
+ - name : Setup asdf
23
+ uses : asdf-vm/actions/setup@v1
24
+
25
+ - name : Setup golang
26
+ run : |
27
+ asdf plugin add golang
28
+ asdf install golang
29
+
30
+ - name : Setup golangci-lint
31
+ run : |
32
+ asdf plugin add golangci-lint
33
+ asdf install golangci-lint
31
34
35
+ - name : Run golangci-lint
36
+ run : make lint
32
37
33
38
go-tests-on-linux :
34
39
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
golang 1.18
2
+ golangci-lint 1.50.1
You can’t perform that action at this time.
0 commit comments