From 573963172f35a65cdfce671e2948381379240da7 Mon Sep 17 00:00:00 2001 From: Jake Probst Date: Sat, 7 Sep 2019 23:38:15 -0700 Subject: [PATCH] add ci --- .drone.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..155aace --- /dev/null +++ b/.drone.yml @@ -0,0 +1,19 @@ +--- +kind: pipeline +type: exec +name: test elseware + +platform: + os: linux + arch: amd64 + +steps: +- name: get rust + commands: + - rustup default nightly +- name: cargo build + commands: + - cargo build +- name: cargo test + commands: + - cargo test