From 21c7c94b1043b1dc67f4e4debb71bc5c527f8fd8 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 20 Apr 2024 13:21:05 +0200 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..409bb4f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: cargo_check + image: rust + commands: + - rustup component add clippy + - cargo clippy --all-features -- -D warnings + - cargo clippy -- -D warnings + - cargo test --all-features + + +