File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,18 +13,18 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
strategy :
15
15
matrix :
16
- go-version : [1.18.x, 1.20 .x]
16
+ go-version : [1.18.x, 1.21 .x]
17
17
steps :
18
18
- name : Setup Go
19
- uses : actions/setup-go@v4
19
+ uses : actions/setup-go@v5
20
20
with :
21
21
go-version : ${{ matrix.go-version }}
22
22
23
23
- name : Checkout code
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Run coverage
27
- run : go test ./... -coverprofile=coverage.out -covermode=atomic
27
+ run : go test -race ./... -coverprofile=coverage.out -covermode=atomic
28
28
29
29
- name : Upload coverage to Codecov
30
30
if : ${{ matrix.go-version == '1.18.x' }}
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout code
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
16
16
- name : golangci-lint
17
17
uses : golangci/golangci-lint-action@v3
You can’t perform that action at this time.
0 commit comments