Skip to content

Commit

Permalink
Remove formatting check from GitHub Actions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
shuhuiluo committed Jul 20, 2024
1 parent b191610 commit 3aefbe3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3aefbe3

Please sign in to comment.