From e77d0932bdbca5f0256a2609767ace2538c4a450 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 7 Jul 2023 11:17:48 +0200 Subject: [PATCH] feat: run tests only for linux node --- .github/workflows/release-binaries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index ba48409d..01cb2b18 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -33,7 +33,7 @@ jobs: ref: ${{ inputs.tag }} - name: Run tests - if: ${{ env.GOARCH == 'amd64' }} + if: ${{ env.GOARCH == 'amd64' && env.GOOS == 'linux' }} run: go test -v ./... - name: Build binary