webhookey/.woodpecker.yml

38 lines
569 B
YAML
Raw Normal View History

pipeline:
fmt:
group: default
2022-10-15 01:56:07 +02:00
image: rust_full
commands:
- cargo fmt --all -- --check
clippy:
group: default
2022-10-15 01:56:07 +02:00
image: rust_full
commands:
- cargo clippy --all-features
2022-02-10 01:38:37 +01:00
test:
group: default
2022-10-15 01:56:07 +02:00
image: rust_full
2022-02-10 01:38:37 +01:00
commands:
- cargo test
build:
group: default
2022-10-15 01:56:07 +02:00
image: rust_full
commands:
- cargo build
- cargo build --release
build-deb:
group: default
2022-10-15 01:56:07 +02:00
image: rust_full
commands:
- cargo deb
doc:
group: default
2022-10-15 01:56:07 +02:00
image: rust_full
commands:
- cargo doc