From fb9469e58e16b4f48418c21b679c72f4a9cafd19 Mon Sep 17 00:00:00 2001 From: Simon Aronsson Date: Tue, 12 Jan 2021 08:29:23 +0100 Subject: [PATCH] remove cgo_enable flag for the test step this was a last-minute change that actually isn't needed. we'll know whether this is an issue in the build step anyway. --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1f0ec4f..2ff161a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -47,7 +47,7 @@ jobs: go-version: 1.15.x - name: Run tests run: | - CGO_ENABLED=0 go test -v -coverprofile=coverage.out -covermode=atomic ./... + go test -v -coverprofile=coverage.out -covermode=atomic ./... - name: Publish coverage uses: codecov/codecov-action@v1 with: @@ -69,4 +69,4 @@ jobs: uses: goreleaser/goreleaser-action@v2 with: version: v0.104.1 - args: --snapshot --skip-publish --debug \ No newline at end of file + args: --snapshot --skip-publish --debug