aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-11 20:33:12 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-11 20:33:12 +0200
commit828d4c71d2b82f5786f63bdf7ac6a10fe92670ea (patch)
tree2726ab628abef888fdeaa6ea63cdd0f2bed5e487 /.github/workflows
parent921414aa74711a77cda4a24d61148d062cb5fc63 (diff)
Now?
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cover.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/cover.yml b/.github/workflows/cover.yml
index b113a9809..9d0fcfeb4 100644
--- a/.github/workflows/cover.yml
+++ b/.github/workflows/cover.yml
@@ -52,8 +52,9 @@ jobs:
./odin build tests/internal -build-mode:test -debug -all-packages -vet -strict-style -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -target:linux_amd64
kcov --exclude-path=tests --exclude-path=/usr kcov-out ./internal .
- - name: Report
- env:
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- run: |
- bash <(curl -s https://codecov.io/bash) -s kcov-out \ No newline at end of file
+ - uses: codecov/codecov-action@v5
+ with:
+ name: Ubuntu Coverage # optional
+ token: ${{ secrets.CODECOV_TOKEN }}
+ verbose: true # optional (default = false
+ directory: kcov-out/kcov-merged \ No newline at end of file