fix(ci): apply rustfmt so the Check workflow passes again #41
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/ci-cargo-fmt"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
The
fmt + clippy + build + testsCheck workflow has failed on every push and PR for a while (tasks #130 through #148, all dying in 2-12 seconds). Root cause, reproduced locally: the workflow's first real step,cargo fmt --check, exits non-zero on 10 pre-existing formatting violations incrates/meshcentral-agent-fetch(fetcher.rs,lib.rs,source.rs,verify.rs) andcrates/meshcentral/src/boot.rs, so the job aborts before clippy, build, or tests ever run.This PR is
cargo fmt --alloutput only - line wrapping, no semantic changes.Verification
All four workflow steps run locally on this branch:
cargo fmt --all -- --check- cleancargo clippy --all-targets -- -D warnings- cleancargo build --all-targets- okcargo test --lib- 29 suites, all pass, 0 failures