ci: Update CI config
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
finga 2022-10-15 01:56:07 +02:00
parent f38c70373c
commit 55c5134840
1 changed files with 6 additions and 9 deletions

View File

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