From ce9d88d4b1a9b32cea40c354533f43b1f408af53 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Thu, 26 Nov 2020 13:20:47 +0300 Subject: [PATCH] update ci config --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b6d64b..4de9114 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,11 @@ on: - '*.*' pull_request: +env: + DEVELOPER_NODE: 1 + RETAILCRM_URL: https://test.retailcrm.pro + RETAILCRM_KEY: key + jobs: tests: name: Tests @@ -42,10 +47,7 @@ jobs: COVERAGE: ${{ matrix.coverage }} if: env.COVERAGE == 1 run: | - go test ./errs -race -coverprofile=errs.out -covermode=atomic "$d" - go test ./v5 -race -coverprofile=v5.out -covermode=atomic "$d" - cat errs.out >> coverage.txt - cat v5.out >> coverage.txt + go test ./... -race -coverprofile=coverage.txt -covermode=atomic "$d" - name: Coverage env: COVERAGE: ${{ matrix.coverage }} @@ -53,5 +55,3 @@ jobs: run: | bash <(curl -s https://codecov.io/bash) rm coverage.txt - rm errs.out - rm v5.out \ No newline at end of file