From 16001c0682cf0a017826cfeb265072b8f31f24d8 Mon Sep 17 00:00:00 2001 From: Tyler Fanelli Date: Sat, 7 Dec 2024 00:10:38 -0500 Subject: [PATCH] gh: Run clippy tests on std and alloc features Signed-off-by: Tyler Fanelli --- .github/workflows/code_quality.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 84a6890..02047f0 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -26,5 +26,8 @@ jobs: - name: Formatting (rustfmt) run: cargo fmt -- --check - - name: Clippy (all features) - run: cargo clippy --all-features -- -D warnings + - name: Clippy (std) + run: cargo clippy --no-default-features --features std -- -D warnings + + - name: Clippy (alloc) + run: cargo clippy --no-default-features --features alloc -- -D warnings