diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-25 15:58:28 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-09-25 15:58:28 +0800 |
| commit | fe5c34f2d215b48be4bd71b8a0a0207713f76d51 (patch) | |
| tree | 4450b0b2c074244f091666a72a5d3097a02254eb /.github/workflows | |
| parent | 3b9f34c380b020c3ac0fc46f4dda5c0581899786 (diff) | |
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
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 2 |
1 files changed, 0 insertions, 2 deletions
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 |
