diff options
-rwxr-xr-x | .github/workflows/ci-build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index a8c0385d..8ec3eec9 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -65,6 +65,7 @@ jobs: - name: Run golang tests run: | + mkdir ./coverage-ci go test -v -race -cover -tags=debug -coverprofile=./coverage-ci/lib.txt -covermode=atomic . go test -v -race -cover -tags=debug -coverprofile=./coverage-ci/rpc_config.txt -covermode=atomic ./plugins/rpc go test -v -race -cover -tags=debug -coverprofile=./coverage-ci/rpc.txt -covermode=atomic ./plugins/rpc/tests |