From a76ec08da6aa36a0982f025e1e8cec1d8a0e6578 Mon Sep 17 00:00:00 2001 From: glyph Date: Wed, 6 Apr 2022 10:36:10 +0200 Subject: [PATCH] move drone config to repo root and add triggers --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..3923ab5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +name: test-on-amd64 + +platform: + arch: amd64 + +steps: +- name: clippy + image: rust:buster + commands: + - cargo clippy --verbose --all + +trigger: + event: + include: + - push + - pull_request