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 9939a32 commit 98f6610Copy full SHA for 98f6610
.github/workflows/ci.yml
@@ -55,6 +55,14 @@ jobs:
55
# files: coverage.out
56
# fail_ci_if_error: true
57
# verbose: true
58
+ # in the meantime, upload coverage to GHA
59
+ - run: docker run --rm -i test go tool cover -html /dev/stdin -o /dev/stdout < coverage.out > coverage.html
60
+ - uses: actions/upload-artifact@v4
61
+ with:
62
+ name: coverage
63
+ path: coverage.*
64
+ include-hidden-files: true
65
+ if-no-files-found: error
66
dockerfile:
67
name: Test Dockerfile
68
runs-on: ubuntu-latest
0 commit comments