From ab1d6968bbea9f14fb57df39497c4840470fac42 Mon Sep 17 00:00:00 2001 From: Dave Armstrong Date: Wed, 2 Jun 2021 16:55:25 +0100 Subject: [PATCH] (maint) Removing coverage reporting This wont work for PRs raised from a fork. See for more details: https://github.com/actions/labeler/pull/50 --- .github/workflows/test.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 751b48ea..cbf5f913 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,16 +26,4 @@ jobs: run: go build -v - name: Test - run: go test -v -covermode=count -coverprofile=coverage.out ./... - - - name: Convert go coverage report to lcov format - uses: jandelgado/gcov2lcov-action@v1.0.0 - with: - infile: coverage.out - outfile: coverage.lcov - - - name: Report coverage - uses: vebr/jest-lcov-reporter@v0.2.0 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - lcov-file: ./coverage.lcov + run: go test -v ./...