ci: Update CI to use cargo-checkmate
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

Use `cargo-checkmate` and skip those which would then be redundant.
This commit is contained in:
finga 2023-06-11 17:46:47 +02:00
parent c2cea219e1
commit a2e7b1a02a

View file

@ -1,27 +1,14 @@
pipeline: pipeline:
fmt: checkmate:
group: default group: default
image: rust_full image: rust_full
commands: commands:
- cargo fmt --all -- --check - cargo checkmate
clippy: build-release:
group: default group: default
image: rust_full image: rust_full
commands: 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 - cargo build --release
build-deb: build-deb:
@ -29,9 +16,3 @@ pipeline:
image: rust_full image: rust_full
commands: commands:
- cargo deb - cargo deb
doc:
group: default
image: rust_full
commands:
- cargo doc