From e624f885363ce919528983fbd06290195099fb06 Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 17 Aug 2023 16:59:07 -0500 Subject: [PATCH] Check without default features in drone --- .drone.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.yml b/.drone.yml index bd28079..daca71b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,6 +23,7 @@ steps: commands: - rustup component add clippy - cargo clippy -- -D warnings + - cargo clippy --no-default-features -- -D warnings - cargo clippy --example fetch -- -D warnings - cargo clippy --example resolver -- -D warnings @@ -125,6 +126,7 @@ steps: pull: always commands: - cargo check --target=$TARGET + - cargo check --target=$TARGET --no-default-features - cargo check --target=$TARGET --example fetch - cargo check --target=$TARGET --example resolver