We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a0fd5 commit 1792711Copy full SHA for 1792711
1 file changed
.github/workflows/release.yml
@@ -22,10 +22,20 @@ jobs:
22
23
- name: Run tests with coverage
24
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
25
+
26
+ - name: Upload code coverage results
27
+ uses: actions/upload-artifact@v4
28
+ with:
29
+ name: coverage
30
+ path: coverage.txt
31
codecov:
32
runs-on: ubuntu-latest
33
needs: test
34
steps:
35
+ - name: Download code coverage results
36
+ uses: actions/download-artifact@v4
37
38
39
- name: Upload coverage to Codecov
40
uses: codecov/codecov-action@v3
41
with:
0 commit comments