From 5923648df0a31dab0fa00e9732b943b099ae05cc Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 7 Sep 2019 19:46:10 -0700 Subject: [PATCH] separate build and test ci tasks for real this time --- .drone.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index a2be68b..d513f95 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,8 +8,12 @@ platform: arch: amd64 steps: -- name: cargo test +- name: get rust commands: - rustup default nightly +- name: cargo build + commands: - cargo build +- name: cargo test + commands: - cargo test