From 24022671c72b592e1c217489b5a372b173942112 Mon Sep 17 00:00:00 2001 From: Johanan Idicula Date: Tue, 16 May 2023 12:03:00 -0400 Subject: [PATCH] ci(e2e_test): Disable CGO_ENABLED to validate static build (#66) Related to #62 --- .github/workflows/e2e_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index e21c924..de204a6 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -43,7 +43,7 @@ jobs: restore-keys: | go-${{ runner.os }}- - name: Build the project - run: go build + run: CGO_ENABLED=0 go build - name: Install extension env: GITHUB_TOKEN: ${{ secrets.REPO_WRITE_TOKEN }}