diff options
author | Valery Piashchynski <[email protected]> | 2020-12-08 15:04:31 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-08 15:04:31 +0300 |
commit | c2746d5d0053c5fc1a5b1336bc571df106e4aae8 (patch) | |
tree | ea4c2abd73b459b689694cd42fba1d228adcd7d3 /.github | |
parent | 3c91c9243d334333b18de19f7f4d181b9b0d89c9 (diff) |
Simplify CI
Diffstat (limited to '.github')
-rwxr-xr-x | .github/workflows/ci-build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 49d1d1d6..7975c0f8 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -81,12 +81,13 @@ jobs: go test -v -race -cover -tags=debug -coverprofile=static_root.txt -covermode=atomic ./plugins/static go test -v -race -cover -tags=debug -coverprofile=headers.txt -covermode=atomic ./plugins/headers/tests go test -v -race -cover -tags=debug -coverprofile=checker.txt -covermode=atomic ./plugins/checker/tests + cat ./coverage-ci/*.txt > ./coverage-ci/summary.txt - name: Run code coverage uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: checker.txt, headers.txt, static.txt, static_root.txt, gzip.txt, lib.txt, rpc_config.txt, rpc.txt, plugin_config.txt, logger.txt, server.txt, metrics.txt, informer.txt attributes.txt http_tests.txt + files: summary.txt flags: unittests name: codecov-umbrella fail_ci_if_error: false |