From 557db5a320d9b4b4e84f8aae7d6fd6de5906f873 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Thu, 26 Nov 2020 12:47:51 +0300 Subject: [PATCH] somefixes --- .github/workflows/ci.yml | 4 +++- go.test.sh | 3 --- 2 files changed, 3 insertions(+), 4 deletions(-) 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