From 4462425a0f997268b62760fdc96766624dad8620 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 26 Sep 2020 09:43:28 -0400 Subject: [PATCH] drone CI --- .drone.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9ada905 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,9 @@ +kind: pipeline +name: default + +steps: +- name: test + image: rust:1 + commands: + - cargo build --verbose --all + - cargo test --verbose --all