diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 927a3c559..fcd18686f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,6 +32,8 @@ jobs: features: "" - rust_version: "stable" features: "--no-default-features" + - rust_version: "stable" + features: "--all-features" - rust_version: "msrv" features: "" steps: diff --git a/build_tools/check.sh b/build_tools/check.sh index 017ec9769..3cd411372 100755 --- a/build_tools/check.sh +++ b/build_tools/check.sh @@ -99,7 +99,7 @@ if $lint; then cargo deny --all-features --locked --exclude-dev check licenses fi PATH="$build_dir:$PATH" cargo xtask format --all --check - for features in "" --no-default-features; do + for features in "" --no-default-features --all-features; do cargo clippy --workspace --all-targets $features done fi