diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index c07f942..e2f4666 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -81,4 +81,9 @@ jobs: - name: Test run: | - go test -v ./... \ No newline at end of file + go test -coverprofile=cover.out ./tests/... -coverpkg=./pkg/...,.,./internal/... + + - name: Coverage Report + uses: Jannik-Hm/go-test-coverage-report@v1 + with: + coverprofile: cover.out \ No newline at end of file