From d0a98fff624db82480372434c95a530479b6acb5 Mon Sep 17 00:00:00 2001 From: finga Date: Sun, 11 Jun 2023 17:46:47 +0200 Subject: [PATCH] ci: Update CI to use `cargo-checkmate` Use `cargo-checkmate` and skip those which would then be redundant. --- .woodpecker.yml | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 19c16b4..285dbcb 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,27 +1,14 @@ pipeline: - fmt: + checkmate: group: default image: rust_full commands: - - cargo fmt --all -- --check + - cargo checkmate - clippy: + build-release: group: default image: rust_full commands: - - cargo clippy --all-features - - test: - group: default - image: rust_full - commands: - - cargo test - - build: - group: default - image: rust_full - commands: - - cargo build - cargo build --release build-deb: @@ -29,9 +16,3 @@ pipeline: image: rust_full commands: - cargo deb - - doc: - group: default - image: rust_full - commands: - - cargo doc