summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Milde <daniel@milde.cz>2024-04-14 22:36:32 +0200
committerDaniel Milde <daniel@milde.cz>2024-04-14 22:39:30 +0200
commitec0e2bb22622b9a2b081c3e908c829fe00c87a13 (patch)
tree65d5cbe835265a73dbb40805fcb2b8bd8b787e57
parent1774a37e595913dc4513f5529722027509177b48 (diff)
ci: use codecov token
-rw-r--r--.github/workflows/test.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index b38afd2..5b70e96 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -56,8 +56,9 @@ jobs:
run: |
go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
- name: Upload coverage report
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
with:
files: ./coverage.out
fail_ci_if_error: true
verbose: true
+ token: ${{ secrets.CODECOV_TOKEN }}