From 475e6125649c3265748d076657dd1ade76f82379 Mon Sep 17 00:00:00 2001 From: Andrey Tkachenko Date: Fri, 12 May 2023 11:15:38 +0400 Subject: [PATCH] Add CI --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..484f2d5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +kind: pipeline +name: default + +steps: +- name: build + image: rust + commands: + - cargo build --verbose --all + +- name: fmt-check + image: rust + commands: + - rustup component add rustfmt + - cargo fmt --all -- --check