Fix CI: update Go version to 1.25, use specific package paths
CI / test (push) Failing after 12m36s

- .github/workflows/ci.yml: go-version '1.23' -> '1.25' to match go.mod
- All go build/vet/test/lint: use ./cmd/... ./internal/... instead of ./...
  to avoid picking up Go packages in node_modules/ (flatted)
- Makefile: same fix for test target
This commit is contained in:
2026-07-30 14:48:16 -04:00
parent a58b203b16
commit cfcf9dbeec
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ dev:
## test: Run tests
test:
$(GOTEST) -v -race -coverprofile=coverage.out ./...
$(GOTEST) -v -race -coverprofile=coverage.out ./cmd/... ./internal/...
## test/integration: Run integration tests
test/integration: