ci(e2e_test): Disable CGO_ENABLED to validate static build (#66)

Related to #62
This commit is contained in:
Johanan Idicula
2023-05-16 12:03:00 -04:00
committed by GitHub
parent 88a1bc276b
commit 24022671c7

View File

@@ -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 }}