remove codecov action on pull request

This commit is contained in:
Rob O'Dwyer 2022-09-13 13:41:50 -07:00
parent c4247945ca
commit 35e5a53005

View file

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