We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34d86c6 commit 828044fCopy full SHA for 828044f
1 file changed
.github/workflows/ci.yaml
@@ -106,7 +106,12 @@ jobs:
106
run: go mod download
107
108
- name: Run tests with coverage
109
- run: go test -coverprofile=coverage.out ./...
+ run: |
110
+ go test -coverprofile=coverage.out.tmp ./...
111
+ pushd v2; go test -coverprofile=coverage-v2.out.tmp ./...; popd
112
+ echo "mode: set" > coverage.out
113
+ tail -n +2 coverage.out.tmp >> coverage.out
114
+ tail -n +2 v2/coverage-v2.out.tmp >> coverage.out
115
116
- name: Calculate coverage
117
run: |
0 commit comments