From fb30bd876ee23d412b4bacf4b09fec3d54643a51 Mon Sep 17 00:00:00 2001 From: "Tom C." Date: Tue, 7 Jul 2026 18:55:27 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20gofmt=20ne=20v=C3=A9rifie=20que=20cmd/=20?= =?UTF-8?q?+=20internal/=20(pas=20vendor/,=20code=20tiers)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Claude-Session: https://claude.ai/code/session_01SsG4T6WHAC2RrTFJkBspf3 --- .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 6c8c52e..b15e5ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,5 +16,6 @@ jobs: go-version-file: go.mod - run: go build ./... - run: go vet ./... - - run: test -z "$(gofmt -l .)" + # gofmt only our code — vendor/ is third-party and not ours to format. + - run: test -z "$(gofmt -l cmd internal)" - run: go test ./...