From 144df61af2fd99e6c5cf53fd0783bd559de299c9 Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Thu, 4 Aug 2022 22:15:05 +0000 Subject: [PATCH] Enable drone integration (#1) This will enable integration with the Drone build server. Reviewed-on: https://code.kiers.eu/jjkiers/newsletter-to-web/pulls/1 --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..18a099a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: test-on-amd64 + +platform: + arch: amd64 + +steps: +- name: test + image: rust:1.62 + commands: + - cargo build --verbose --all + - cargo test --verbose --all +