We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0dc6a0 + 0dbafbc commit 163eed6Copy full SHA for 163eed6
.github/workflows/ci.yml
@@ -78,11 +78,15 @@ jobs:
78
git submodule update --init --recursive
79
cd raft-compat
80
go mod tidy
81
- go test ./...
+ go test -v -coverpkg=./... ./... -coverprofile="${{ github.workspace }}/coverage.out"
82
# x86-64 specific build.
83
- if: matrix.arch == 'x64'
84
run: |
85
86
87
88
- go test -race ./...
+ go test -race -v -coverpkg=./... ./... -coverprofile="${{ github.workspace }}/coverage.out"
89
+ - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
90
+ with:
91
+ path: "${{ github.workspace }}/coverage.out"
92
+ name: coverage-report-${{matrix.go}}-${{matrix.arch}}
0 commit comments