Skip to content

Commit 1792711

Browse files
committed
chore: forgot to move the coverage report around
1 parent 63a0fd5 commit 1792711

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,20 @@ jobs:
2222

2323
- name: Run tests with coverage
2424
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
2531
codecov:
2632
runs-on: ubuntu-latest
2733
needs: test
2834
steps:
35+
- name: Download code coverage results
36+
uses: actions/download-artifact@v4
37+
with:
38+
name: coverage
2939
- name: Upload coverage to Codecov
3040
uses: codecov/codecov-action@v3
3141
with:

0 commit comments

Comments
 (0)