We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50ed6ae commit 553cec3Copy full SHA for 553cec3
1 file changed
.github/workflows/main.yml
@@ -41,5 +41,10 @@ jobs:
41
42
- name: Test
43
run: |
44
- go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
+ go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
45
echo "Coverage: $(go tool cover -func=coverage.out | grep total | awk '{print $3}')"
46
+
47
+ - name: Upload to Codecov
48
+ uses: codecov/codecov-action@v5
49
+ with:
50
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments