From e475ff5cd3d31284ce77a54fc18423018c9a0430 Mon Sep 17 00:00:00 2001 From: Weston McNamee Date: Sat, 8 Aug 2020 20:41:48 -0700 Subject: [PATCH] =?UTF-8?q?ci(actions):=20=F0=9F=8F=81=20=20fix=20coverage?= =?UTF-8?q?=20command=20for=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 ./...