From 75abbbbfcd88add81e5c4b8a23e6d1725d1a4b4b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 00:11:28 +0000 Subject: [PATCH 1/2] Initial plan From 75552e7c2ce166923ef15a65280c474e32cd9258 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 00:14:00 +0000 Subject: [PATCH 2/2] Add go test step to CI build job Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com> --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aab7b81..2fcf6a1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,6 +27,9 @@ jobs: go build ./cmd/sync-controller/ go build ./cmd/resolver-controller/ + - name: Test + run: go test ./... + - name: Vet run: go vet ./...