diff options
author | Valery Piashchynski <[email protected]> | 2020-12-03 13:08:38 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-03 13:08:38 +0300 |
commit | 31e4bb7b236fe0ae59fd42d66af0d718b67a2a4b (patch) | |
tree | cd51f81b20dc32666165ff85d8b8bdad0e6c464c /.github | |
parent | bdabf97a6463c0e3897063235f3d556d4f75c4bd (diff) |
Initial commit of checker plugin
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 7e3e9c03..49d1d1d6 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -80,12 +80,13 @@ jobs: go test -v -race -cover -tags=debug -coverprofile=static.txt -covermode=atomic ./plugins/static/tests 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 - name: Run code coverage uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: 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: 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 flags: unittests name: codecov-umbrella fail_ci_if_error: false |