File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- name : Checkout code
25
- uses : actions/checkout@v2
25
+ uses : actions/checkout@v3
26
26
- name : Run golangci-lint
27
- uses : golangci/golangci-lint-action@v2
27
+ uses : golangci/golangci-lint-action@v3
28
28
with :
29
29
version : latest
30
30
args : --timeout=30m
@@ -33,16 +33,16 @@ jobs:
33
33
name : Test
34
34
strategy :
35
35
matrix :
36
- go-version : [ 1.19 .x, 1.20 .x ]
36
+ go-version : [ 1.20 .x, 1.21 .x ]
37
37
platform : [ ubuntu-latest, macos-latest, windows-latest ]
38
38
runs-on : ${{ matrix.platform }}
39
39
steps :
40
+ - name : Checkout code
41
+ uses : actions/checkout@v3
40
42
- name : Install Go
41
- uses : actions/setup-go@v2
43
+ uses : actions/setup-go@v4
42
44
with :
43
45
go-version : ${{ matrix.go-version }}
44
- - name : Checkout code
45
- uses : actions/checkout@v2
46
46
- name : Run tests with coverage
47
47
run : go test -shuffle=on -v -race -coverprofile=coverage -covermode=atomic ./...
48
48
- name : Upload coverage report to Codecov
You can’t perform that action at this time.
0 commit comments