From cede669c20524de55dc1bb8b2366c12e5e1fc56c Mon Sep 17 00:00:00 2001 From: Smolevich Date: Wed, 1 Apr 2020 12:40:49 +0300 Subject: [PATCH] Add temporary using action --- .github/workflows/ci-test-backend.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-test-backend.yml b/.github/workflows/ci-test-backend.yml index cab52232..e2e105fa 100644 --- a/.github/workflows/ci-test-backend.yml +++ b/.github/workflows/ci-test-backend.yml @@ -55,8 +55,13 @@ jobs: run: $GITHUB_WORKSPACE/golangci-lint run --config ${GITHUB_WORKSPACE}/backend/.golangci.yml ./... working-directory: backend/_example/memory_store - - name: submit coverage - run: $(go env GOPATH)/bin/goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov - working-directory: backend - env: - COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Send coverage + uses: shogo82148/actions-goveralls@v1 + with: + path-to-profile: profile.cov + parallel: true + # - name: submit coverage + # run: $(go env GOPATH)/bin/goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov + # working-directory: backend + # env: + # COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}