From c797e839b999ed5a840a0a65460f95ee0d40a393 Mon Sep 17 00:00:00 2001 From: Jon Gallant <2163001+jongio@users.noreply.github.com> Date: Sun, 17 May 2026 00:30:36 -0700 Subject: [PATCH] fix(ci): remove duplicate Set up Go step in test job The test job in ci.yml had two identical 'Set up Go' steps (lines 78-83 and 122-127). The second instance at line 122 is redundant because Go is already configured earlier in the same job. Removing it avoids unnecessary CI work and potential cache confusion. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eedaa1b..d0c7fe7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,13 +119,6 @@ jobs: COVERAGE=$(go tool cover -func=../coverage/coverage.out | grep total | awk '{print $3}') echo "**Total Coverage: $COVERAGE**" >> $GITHUB_STEP_SUMMARY - - name: Set up Go - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5 - with: - go-version: '${{ env.GO_VERSION }}' - cache: true - cache-dependency-path: cli/go.sum - - name: Build for multiple platforms run: | mkdir -p bin/windows-amd64 bin/linux-amd64 bin/darwin-amd64 bin/darwin-arm64