diff options
author | Valery Piashchynski <[email protected]> | 2020-12-04 00:17:04 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-04 00:17:04 +0300 |
commit | e514ea8d58843db9b5d5d4f259f76cd2e226a44f (patch) | |
tree | 7431dccaac1efee0e3bf33dc23debde1051d5157 /.github/workflows | |
parent | bdabf97a6463c0e3897063235f3d556d4f75c4bd (diff) | |
parent | f91ca08abbc9e2184005376ff1533786f194c620 (diff) |
Merge pull request #428 from spiral/plugin/health
Checker plugin
Diffstat (limited to '.github/workflows')
-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 |