From a6236fa8344b06d662c58d10647da659130ffd8f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 29 May 2026 12:27:29 +0000 Subject: [PATCH 1/2] Initial plan From 98acb2905cc9124d3498dad1bd8263988c5de7d6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 29 May 2026 12:30:03 +0000 Subject: [PATCH 2/2] Remove redundant go.yml CI workflow The workflow duplicated what build.yml already handles comprehensively: - go build and go test run on Linux and Windows in build.yml - go version was wrong (1.20 vs go.mod's 1.25.5) - Used floating action tags instead of pinned SHA refs - Lacked module cache config Addresses all four review comments from the PR review thread. --- .github/workflows/go.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index ecf61cb..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,28 +0,0 @@ -# This workflow will build a Go project -# For more information, see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: Go - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.20' - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./...