ci: Update CI config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
finga 2022-10-15 01:56:07 +02:00
parent f38c70373c
commit 55c5134840

View file

@ -1,40 +1,37 @@
pipeline: pipeline:
fmt: fmt:
group: default group: default
image: rust image: rust_full
commands: commands:
- rustup component add rustfmt
- cargo fmt --all -- --check - cargo fmt --all -- --check
clippy: clippy:
group: default group: default
image: rust image: rust_full
commands: commands:
- rustup component add clippy
- cargo clippy --all-features - cargo clippy --all-features
test: test:
group: default group: default
image: rust image: rust_full
commands: commands:
- cargo test - cargo test
build: build:
group: default group: default
image: rust image: rust_full
commands: commands:
- cargo build - cargo build
- cargo build --release - cargo build --release
build-deb: build-deb:
group: default group: default
image: rust image: rust_full
commands: commands:
- cargo install cargo-deb
- cargo deb - cargo deb
doc: doc:
group: default group: default
image: rust image: rust_full
commands: commands:
- cargo doc - cargo doc