ci: Update CI config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
f38c70373c
commit
55c5134840
1 changed files with 6 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue