Skip to content

Commit f8c7e35

Browse files
committed
Add --all-features when running clippy in ci
Currently we do not lint all features, this is not a problem since the only feature guarded code is on the "std" feature which is on by default. However, to future proof the crate, run clippy in CI with `--all-features`.
1 parent cfbfc7e commit f8c7e35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
- uses: actions-rs/cargo@v1
104104
with:
105105
command: clippy
106-
args: --all-targets -- -D warnings
106+
args: --all-targets --all-features -- -D warnings
107107

108108
Fmt:
109109
name: Fmt

0 commit comments

Comments
 (0)