From 7f7e408623064af6885710b68f6ae57e60c88a84 Mon Sep 17 00:00:00 2001 From: zarzet Date: Fri, 10 Jul 2026 06:26:50 +0700 Subject: [PATCH] ci: enforce gofmt on the Go backend The package is fully gofmt-clean after the modernization pass, so the formatting check deferred from the initial CI setup can now be enabled. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dd8d1db..5e9785a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,9 @@ jobs: go-version: "1.25.8" cache-dependency-path: go_backend/go.sum + - name: Check formatting + run: test -z "$(gofmt -l .)" + - name: Vet run: go vet ./...