Merge pull request #11 from dAppCore/dev

fix: strip module prefix from coverage paths for Codecov
This commit is contained in:
Snider 2026-03-21 09:17:10 +00:00 committed by GitHub
commit df1576b101
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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