Skip to content

Commit

Permalink
gh: Run clippy tests on std and alloc features
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Fanelli <[email protected]>
  • Loading branch information
tylerfanelli committed Dec 7, 2024
1 parent 8aa469a commit 16001c0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 16001c0

Please sign in to comment.