diff options
author | Valery Piashchynski <[email protected]> | 2020-11-30 12:54:41 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-30 12:54:41 +0300 |
commit | 9402ea1e88d6e63b8b0388ad662d20b727b940d0 (patch) | |
tree | 3a012e3d4a891f35466d53a7e8a3a8f209a249bc /.github | |
parent | b27564251f4dbb8e366a4940d79a5645e2b28d3c (diff) |
Static plugin initial commit
Diffstat (limited to '.github')
-rwxr-xr-x | .github/workflows/ci-build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 374f690a..6a7af214 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -77,12 +77,14 @@ jobs: 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 go test -v -race ./plugins/gzip/tests -tags=debug -coverprofile=gzip.txt -covermode=atomic + go test -v -race -cover ./plugins/static/tests -tags=debug -coverprofile=static.txt -covermode=atomic + go test -v -race -cover ./plugins/static -tags=debug -coverprofile=static_root.txt -covermode=atomic - name: Run code coverage uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: 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: 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 |