From 14235656cc5c583f6175681cd997297f3285423b Mon Sep 17 00:00:00 2001 From: shankar0123 Date: Mon, 23 Mar 2026 17:03:40 -0400 Subject: [PATCH] fix: update CI to Go 1.25 and add mcp-server to build go.mod was bumped to go 1.25.0 by go mod tidy. CI was still on 1.22, causing covdata tool errors. Also adds mcp-server binary to CI build step. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26e08e3..884ab2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,12 +19,13 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.22' + go-version: '1.25' - name: Go Build run: | go build ./cmd/server/... go build ./cmd/agent/... + go build ./cmd/mcp-server/... - name: Go Vet run: go vet ./...