diff options
author | Valery Piashchynski <[email protected]> | 2020-11-30 14:50:35 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-30 14:50:35 +0300 |
commit | 0a5116e9dcce76c8f845f4fdda41d448f3e38955 (patch) | |
tree | 0c81d9d509edc40c2988e038a5412ca3409e29ee /.github/workflows/ci-build.yml | |
parent | a7f1952bc80f28985dde7da6446342a774464e24 (diff) | |
parent | d6e7b554ab56ee1f423ce915cc9dbb132457d689 (diff) |
Merge pull request #420 from spiral/plugin/static
[RR2] Plugin for serving static files [Static]
Diffstat (limited to '.github/workflows/ci-build.yml')
-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 |