From 07ed26f790c348a904e4d1b10412be3b09b64f63 Mon Sep 17 00:00:00 2001 From: Daniel Liu <139250065@qq.com> Date: Fri, 6 Feb 2026 17:14:07 +0800 Subject: [PATCH] build: move tidy check to `doTidy()` (#2023) --- build/ci.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build/ci.go b/build/ci.go index f268981ae4..ce58cdf3ae 100644 --- a/build/ci.go +++ b/build/ci.go @@ -348,14 +348,6 @@ func doGenerate() { } } fmt.Println("No stale files detected.") - - // Run go mod tidy check. - for _, mod := range goModules { - tidy := tc.Go("mod", "tidy", "-diff") - tidy.Dir = mod - build.MustRun(tidy) - } - fmt.Println("No untidy module files detected.") } // doBadDeps verifies whether certain unintended dependencies between some