From 617a9f34eb8f6e26fadfecf564185b675c077331 Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Wed, 6 Mar 2024 13:41:59 -0700 Subject: [PATCH] build executable before integration test Signed-off-by: Meredith Lancaster --- .github/workflows/go.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index eb5c1cbca..38f2cb51d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -38,5 +38,8 @@ jobs: - name: Build run: go build -v ./cmd/gh + - name: Build executable + run: make bin/gh + - name: Run attestation command integration Tests run: ./test/integration/attestation-cmd/download-and-verify-package-attestation.sh