Skip to content

Commit 13cd76c

Browse files
authored
Merge branch 'scaleway:master' into master
2 parents f8c72da + fffd104 commit 13cd76c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
go-version: stable
2222
- name: Run coverage
23-
run: go test -coverprofile=coverage.out -covermode=count ./...
23+
run: go tool gotestsum --format github-actions --junitfile junit.xml -- -coverprofile=coverage.out -covermode=count ./...
2424
- name: Upload coverage to Codecov
2525
uses: codecov/codecov-action@v5
26+
- name: Upload test results to Codecov
27+
if: ${{ !cancelled() }}
28+
uses: codecov/test-results-action@v1
29+
with:
30+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)