From 5bf210dc735cf738622034fe3b852b11e1563587 Mon Sep 17 00:00:00 2001 From: shimun Date: Tue, 23 Jun 2020 19:15:51 +0200 Subject: [PATCH] test all features --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 324d666..1555d63 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ steps: - name: test image: rust:1.43.0 commands: - - cargo test + - cargo test --all-features - name: publish image: rust:1.43.0 environment: @@ -18,7 +18,7 @@ steps: from_secret: cargo_tkn commands: - grep -E 'version ?= ?"${DRONE_TAG}"' -i Cargo.toml || (printf "incorrect crate/tag version" && exit 1) - - cargo package - - cargo publish + - cargo package --all-features + - cargo publish --all-features when: event: tag