From 11024156931ccca77a157305ed7d671729e1c4ba Mon Sep 17 00:00:00 2001 From: Bodil Stokke Date: Sat, 16 Mar 2019 16:31:59 +0000 Subject: [PATCH] Build with all features enabled on CI. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 46c283b..fd25236 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,7 +40,7 @@ commands: - v6-cargo-cache-{{arch}}-{{checksum "rust-version"}}-{{checksum "Cargo.lock"}} - run: name: Build all targets - command: cargo build --tests + command: cargo build --tests --all-features - save_cache: paths: - /usr/local/cargo/registry @@ -57,7 +57,7 @@ commands: name: Check all targets command: | if rustup component add clippy; then - cargo clippy --all --all-targets -- -Dwarnings + cargo clippy --all --all-targets --all-features -- -Dwarnings else echo Skipping clippy fi @@ -72,7 +72,7 @@ commands: steps: - run: name: Run all tests - command: cargo test + command: cargo test --all-features jobs: check: