From 0b53c4aeaa4ea3043c75b3f48781912027377124 Mon Sep 17 00:00:00 2001 From: Smolevich Date: Wed, 1 Apr 2020 17:25:17 +0300 Subject: [PATCH] Add go env --- .github/workflows/ci-test-backend.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-test-backend.yml b/.github/workflows/ci-test-backend.yml index def55353..b82aa9a4 100644 --- a/.github/workflows/ci-test-backend.yml +++ b/.github/workflows/ci-test-backend.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: debug if needed - run: if [[ "$DEBUG" == "true" ]]; then docker version && env; fi + run: if [[ "$DEBUG" == "true" ]]; then env; fi env: DEBUG: ${{secrets.DEBUG}} @@ -33,6 +33,7 @@ jobs: - name: test backend run: | + go env date cd backend/app go test -mod=vendor -timeout=60s -covermode=count -coverprofile=$GITHUB_WORKSPACE/profile.cov_tmp ./...