From 275540a793f010cbe0a7f40fb56770052642af2f Mon Sep 17 00:00:00 2001 From: Andy Wang Date: Sat, 19 Dec 2020 19:21:36 +0000 Subject: [PATCH] Fix commandline syntax --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a8dd660..03cdf87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-go@v2 with: go-version: '^1.15' # The Go version to download (if necessary) and use. - - run: go test -race -coverprofile=coverage.txt -coverpkg=./... -covermode=atomic ./... + - run: go test -race -coverprofile coverage.txt -coverpkg ./... -covermode atomic ./... - uses: codecov/codecov-action@v1 with: file: coverage.txt