From 35e5a53005f61d735990d65239a48e883c0c5e33 Mon Sep 17 00:00:00 2001 From: Rob O'Dwyer Date: Tue, 13 Sep 2022 13:41:50 -0700 Subject: [PATCH] remove codecov action on pull request --- .github/workflows/test.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index acd54a7..43753a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,14 +42,7 @@ jobs: with: go-version: '${{ env.GO_VERSION }}' - name: Run go test - run: go test -race -coverprofile=coverage.txt ./... - - name: Upload coverage to codecov.io - if: github.event_name == 'push' - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.txt - fail_ci_if_error: true + run: go test -race ./... build-cli: name: Build CLI (go build)