From e826e2942a910969a84f6f20466097442bcfd4c4 Mon Sep 17 00:00:00 2001 From: Enno Gotthold Date: Mon, 22 Jul 2024 15:57:35 +0200 Subject: [PATCH] CI: Quote go test command --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 59c0252..37b200a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Test - run: go test -race -coverprofile=coverage.out -covermode=atomic -v ./... + run: go test -race -coverprofile="coverage.out" -covermode="atomic" -v ./... - name: Upload test coverage to Codacy run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report --force-coverage-parser go -r coverage.out env: