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 a790f71 commit 8771438Copy full SHA for 8771438
.github/workflows/go_lib_pull_requests.yml
@@ -105,7 +105,7 @@ jobs:
105
- name: go test
106
run:
107
find . -name vendor -prune -o -name go.mod -print | xargs -n1 dirname
108
- | xargs -n1 -I{} bash -c "pushd {}; go test --race -v ./..."
+ | xargs -n1 -I{} bash -c "pushd {}; go test -coverprofile=coverage.txt --race -v ./..."
109
- name: Upload test coverage results to Codecov
110
uses: codecov/codecov-action@v4
111
with:
@@ -143,5 +143,3 @@ jobs:
143
- id: govulncheck
144
run: find . -name vendor -prune -o -name go.mod -print | xargs -n1 dirname
145
| xargs -n1 -I{} bash -c "pushd {}; govulncheck ./..."
146
- | xargs -n1 -I{} bash -c "pushd {}; go test -coverprofile=coverage.txt --race -v ./..."
147
-
0 commit comments