From d51543d817882ddfc3345ebdc6470b08d603bbd4 Mon Sep 17 00:00:00 2001 From: yuin Date: Mon, 18 Nov 2019 15:25:17 +0900 Subject: [PATCH] Fix workflow --- .github/workflows/test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0e69dc8..ad30e15 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,9 +16,7 @@ jobs: - name: Checkout code uses: actions/checkout@v1 - name: Run tests - run: | - export PATH=$PATH:$(go env GOPATH)/bin - go test -v ./... -covermode=count -coverprofile=coverage.out + run: go test -v ./... -covermode=count -coverprofile=coverage.out - name: Convert coverage to lcov uses: jandelgado/gcov2lcov-action@v1.0.0 if: "matrix.platform == 'ubuntu-latest'"