From 09b69f552bb59da7ff0dc833feeac745fad57a57 Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Sun, 17 May 2026 12:50:13 +0100 Subject: [PATCH] fix: run `tidy-ci` instead of `tidied` As noted in https://github.com/oapi-codegen/oapi-codegen/pull/2372, otherwise this leads to cases where we're not correctly `go mod tidy`ing across the project. As all our projects have a `tidy-ci`, we can use that task. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2105e4e..057fac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,8 +107,8 @@ jobs: - name: Install `tidied` run: go install gitlab.com/jamietanna/tidied@latest - - name: Check for no untracked files - run: tidied -verbose + - name: Run `make tidy-ci` + run: make tidy-ci generate: name: Generated files