From 8ae5a2d1c191e2e65138554d6d4d56e25f7d01a7 Mon Sep 17 00:00:00 2001 From: jsirianni Date: Mon, 18 Dec 2023 15:42:11 -0500 Subject: [PATCH] run windows tests without cgo --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d5c320bb..dff00df9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -51,7 +51,7 @@ jobs: ${{ runner.os }}-go- - name: Run Tests - run: go test -race -coverprofile coverage.txt -coverpkg ./... ./... + run: CGO_ENABLED=0 go test -race -coverprofile coverage.txt -coverpkg ./... ./... - name: Upload Codecov # Only submit code coverage if OS is Linux if: matrix.os == 'ubuntu-20.04'