Merge pull request #44 from infosiftr/codecov

Add back Codecov
This commit is contained in:
Tianon Gravi 2022-06-08 16:35:04 -07:00 committed by GitHub
commit 017573ef53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

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