From fcdbc57ad135ad134f4f0cb9ea127a24098b7fdb Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 18 Aug 2026 09:26:08 +0800 Subject: refactor(ci-new): extract parallel cargo check runner Extract the duplicate parallel check logic from build-all and clippy-all tasks into a shared `run_parallel_checks` helper. Update renderers to set exit code instead of printing failure counts. --- mingling_ci/src/task.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'mingling_ci/src/task.rs') diff --git a/mingling_ci/src/task.rs b/mingling_ci/src/task.rs index 1d389b0..07ffb3f 100644 --- a/mingling_ci/src/task.rs +++ b/mingling_ci/src/task.rs @@ -1,2 +1,3 @@ pub(crate) mod cmd_build; pub(crate) mod cmd_clippy; +pub(crate) mod run; -- cgit