From 954cd714a1df8faed84e2d4191cc9164f082a4d2 Mon Sep 17 00:00:00 2001 From: Snider Date: Sat, 21 Mar 2026 09:16:24 +0000 Subject: [PATCH] fix: strip module prefix from coverage paths for Codecov Co-Authored-By: Virgil --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25c0034..9f1adf4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,9 @@ jobs: go-version-file: go.mod - name: Run tests with coverage - run: go test -coverprofile=coverage.out ./tests/... + run: | + go test -coverprofile=coverage.out ./tests/... + sed -i 's|dappco.re/go/core/||g' coverage.out - name: Upload to Codecov uses: codecov/codecov-action@v5