We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dbb69e commit 0c47227Copy full SHA for 0c47227
.github/workflows/ci.yml
@@ -34,7 +34,12 @@ jobs:
34
- uses: actions/checkout@v2
35
- name: Go Test
36
run: |
37
- docker build --pull --file Dockerfile.test .
+ docker build --pull --file Dockerfile.test --tag test .
38
+ docker run --rm test cat coverage.out > coverage.out
39
+ - name: Codecov
40
+ uses: codecov/codecov-action@v3
41
+ with:
42
+ files: coverage.out
43
dockerfile:
44
name: Test Dockerfile
45
runs-on: ubuntu-latest
0 commit comments