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" -