From 3aefbe3a81c125e294fb76b7eb2a0b79b1c7c38f Mon Sep 17 00:00:00 2001 From: Shuhui Luo <107524008+shuhuiluo@users.noreply.github.com> Date: Sat, 20 Jul 2024 02:33:15 -0700 Subject: [PATCH] Remove formatting check from GitHub Actions The commit removes the formatting check step from the GitHub Actions workflow for Rust. This step was unnecessary and was causing redundancy in the workflow. The focus is now solely on linting checks, making the process more streamlined and efficient. --- .github/workflows/rust.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7b3f781..9a79f56 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -53,14 +53,10 @@ jobs: run: | rustup override set nightly rustup component add clippy --toolchain nightly - rustup component add rustfmt --toolchain nightly - name: Check linting run: cargo clippy --all-targets --all-features -- -D warnings - - name: Check formatting - run: cargo fmt --all -- --check - test: needs: lint name: Test