diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0b6d339..5d066f7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: go mod download - name: Run Unit tests run: | - go test -race -covermode atomic -coverprofile=coverage.out ./... + go test -race -covermode atomic -coverprofile coverage.out ./... - name: Send coverage uses: shogo82148/actions-goveralls@v1 with: diff --git a/Makefile b/Makefile index e8e04b8..f128d55 100644 --- a/Makefile +++ b/Makefile @@ -36,4 +36,4 @@ test: .PHONY: cover cover: - go test -race -covermode atomic -coverprofile=coverage.out ./... + go test -race -covermode atomic -coverprofile coverage.out ./...