From b2dfb550d8fbb70bf3abb1f1833f9b5f38e56f8f Mon Sep 17 00:00:00 2001 From: Micah Johnston Date: Wed, 4 Dec 2024 20:07:13 -0600 Subject: [PATCH] remove clippy from required CI checks --- .github/workflows/rust.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9415d06..e69f7c0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,7 +31,5 @@ jobs: run: cargo test --workspace --all-targets --all-features --verbose - name: Check docs run: cargo doc --examples --all-features --no-deps - - name: Clippy - run: cargo clippy --workspace --all-targets --all-features -- -D warnings - name: Check Formatting (rustfmt) run: cargo fmt --all -- --check