From a470122745f8ed22a936cae060a3593a07d99929 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 30 Mar 2024 22:11:42 +0100 Subject: [PATCH] feat: adding drone Signed-off-by: kjuulh --- .drone.yml | 2 ++ .woodpecker/test.yml | 34 ---------------------------------- 2 files changed, 2 insertions(+), 34 deletions(-) create mode 100644 .drone.yml delete mode 100644 .woodpecker/test.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..7d36638 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,2 @@ +kind: template +load: cuddle-rust-lib-plan.yaml diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml deleted file mode 100644 index 73c7e58..0000000 --- a/.woodpecker/test.yml +++ /dev/null @@ -1,34 +0,0 @@ -when: - - event: [pull_request, tag] - - event: push - branch: - - main - -variables: - - &rust_image 'rustlang/rust:nightly' - -steps: - build: - image: *rust_image - group: ci - commands: - - "cargo build" - - test: - image: *rust_image - group: ci - commands: - - "cargo test" - - lint: - image: *rust_image - group: ci - commands: - - "cargo clippy" - - fmt: - image: *rust_image - group: ci - commands: - - "cargo fmt --all --check" -