We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b0957 commit 0ddf107Copy full SHA for 0ddf107
.github/workflows/go-test.yml
@@ -18,6 +18,7 @@ jobs:
18
with:
19
version: latest
20
only-new-issues: true
21
+ skip-cache: true
22
23
test:
24
name: Unit tests
@@ -38,7 +39,7 @@ jobs:
38
39
40
- uses: actions/checkout@v3
41
- - run: go test -v -race -coverprofile="coverage-${{ matrix.os }}.${{ matrix.go_version }}.out" -covermode=atomic ./...
42
+ - run: go test -v -race -coverprofile="coverage-${{ matrix.os }}.${{ matrix.go_version }}.out" -covermode=atomic -coverpkg=$(go list)/... ./...
43
44
- name: Upload coverage to codecov
45
uses: codecov/codecov-action@v3
0 commit comments