From eee83dfb948a3d316bf1b196f8f78596ca6d4925 Mon Sep 17 00:00:00 2001 From: "hongming-codex-laptop (Molecule AI agent)" Date: Tue, 12 May 2026 21:14:03 -0700 Subject: [PATCH] fix(ci): fail loud on platform Go vet and lint --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e4b42688..3f02c34c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -169,10 +169,10 @@ jobs: run: go build ./cmd/server # CLI (molecli) moved to standalone repo: git.moleculesai.app/molecule-ai/molecule-cli - if: needs.changes.outputs.platform == 'true' - run: go vet ./... || true + run: go vet ./... - if: needs.changes.outputs.platform == 'true' name: Run golangci-lint - run: golangci-lint run --timeout 3m ./... || true + run: golangci-lint run --timeout 3m ./... - if: needs.changes.outputs.platform == 'true' name: Diagnostic — per-package verbose 60s run: | -- 2.45.2