From 0c47227968549061135d2300b310dd18f77ec772 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 8 Jun 2022 16:28:22 -0700 Subject: [PATCH] Add back Codecov MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's give them another chance 😇 --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1ec496..8f12e98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,12 @@ jobs: - uses: actions/checkout@v2 - name: Go Test run: | - docker build --pull --file Dockerfile.test . + docker build --pull --file Dockerfile.test --tag test . + docker run --rm test cat coverage.out > coverage.out + - name: Codecov + uses: codecov/codecov-action@v3 + with: + files: coverage.out dockerfile: name: Test Dockerfile runs-on: ubuntu-latest