From fe5c34f2d215b48be4bd71b8a0a0207713f76d51 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 25 Sep 2025 15:58:28 +0800 Subject: Remove cargo fmt check from workflow - Remove the 'Check formatting' step that runs 'cargo fmt --check' - Keep clippy checks for code quality but remove formatting enforcement --- .github/workflows/rust.yml | 2 -- 1 file changed, 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f91f752..99c800a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -46,8 +46,6 @@ jobs: components: clippy, rustfmt - name: Run clippy run: cargo clippy --workspace --all-targets -- -D warnings - - name: Check formatting - run: cargo fmt --check test: runs-on: ubuntu-latest -- cgit