From 0e5b787657393460068e718837c92e8a46f623b1 Mon Sep 17 00:00:00 2001 From: Rohan Sircar Date: Wed, 28 Apr 2021 16:21:42 +0530 Subject: [PATCH] update drone yaml --- .drone.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.yml b/.drone.yml index ba2a774..75b0ce5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,11 +9,13 @@ steps: - cargo check --workspace - name: lint image: guangie88/rustfmt-clippy:1.51.0-stable + depends_on: [check] commands: - cargo fmt --all -- --check - cargo clippy -- -D warnings - name: test image: guangie88/rustfmt-clippy:1.51.0-stable + depends_on: [check] commands: - cargo test --verbose --all - name: package