From 23e1a3f8cba8467ceeb0ca09dc5eaf1d37b0d9ec Mon Sep 17 00:00:00 2001 From: Nick Bland Date: Fri, 22 Oct 2021 13:09:08 +1000 Subject: [PATCH] add drone configuration --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d6a907a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +type: docker +name: mailApp + +trigger: + branch: + - master + event: + - push + +steps: + - name: testBuild + image: rust:1.56 + commands: + - cargo build --verbose --all + - cargo test --verbose --all \ No newline at end of file