diff options
author | Valery Piashchynski <[email protected]> | 2020-11-19 17:29:33 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-19 17:29:33 +0300 |
commit | 729c19af8c410a28b7b46c134fd7fe9608cd73b1 (patch) | |
tree | 5c77a97dcc3deb9e5cf4e45dfbb0e37d4d1a5205 | |
parent | 71c81a91f9f967e41310077bd26b1dedb0b49556 (diff) |
Add more tests to the CI
-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 4844d107..416e223c 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -75,12 +75,13 @@ jobs: go test -v -race ./plugins/informer/tests -tags=debug -coverprofile=informer.txt -covermode=atomic go test -v -race ./plugins/resetter/tests -tags=debug -coverprofile=informer.txt -covermode=atomic go test -v -race ./plugins/http/attributes -tags=debug -coverprofile=attributes.txt -covermode=atomic + go test -v -race ./plugins/http/tests -tags=debug -coverprofile=http_tests.txt -covermode=atomic - name: Run code coverage uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: lib.txt, rpc_config.txt, rpc.txt, plugin_config.txt, logger.txt, server.txt, metrics.txt, informer.txt attributes.txt + files: lib.txt, rpc_config.txt, rpc.txt, plugin_config.txt, logger.txt, server.txt, metrics.txt, informer.txt attributes.txt http_tests.txt flags: unittests name: codecov-umbrella fail_ci_if_error: false |