From 1e76f95692d0adaa4fc62d7f527560e0b3865828 Mon Sep 17 00:00:00 2001 From: Mahyar McDonald Date: Mon, 3 Nov 2025 18:08:51 -0800 Subject: [PATCH] test with go code changes --- .github/workflows/pull_request.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c6013f2..8273e89 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -29,9 +29,12 @@ jobs: # with: # version: v1.52.2 - - name: Ensure apt_query binaries are executable + - name: Build apt_query binaries run: | #shell - chmod +x apt_query-x86 apt_query-arm64 || true + cd src/cmd/apt_query + GOOS=linux GOARCH=amd64 go build -o ../../../apt_query-x86 . + GOOS=linux GOARCH=arm64 go build -o ../../../apt_query-arm64 . + chmod +x ../../../apt_query-x86 ../../../apt_query-arm64 - name: Test action id: test-action