fix: strip module prefix from coverage paths for Codecov

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-03-21 09:16:24 +00:00
parent b01b7f4d88
commit 954cd714a1

View file

@ -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