diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60581dd..033a3c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,4 +32,6 @@ jobs: - name: Tests run: ./go.test.sh - name: Coverage - run: bash <(curl -s https://codecov.io/bash) + run: | + bash <(curl -s https://codecov.io/bash) + rm coverage.txt diff --git a/go.test.sh b/go.test.sh index 4ed5b8a..a0d72a6 100755 --- a/go.test.sh +++ b/go.test.sh @@ -11,6 +11,3 @@ go test ./v5/ -race -coverprofile=v5.out -covermode=atomic "$d" cat errs.out >> coverage.txt cat v5.out >> coverage.txt - -rm errs.out -rm v5.out