mightyohm-gc-exporter/.woodpecker.yml

31 lines
518 B
YAML
Raw Normal View History

2022-04-21 20:40:52 +02:00
pipeline:
fmt:
group: default
image: rust_full
commands:
- cargo fmt --all -- --check
clippy:
group: default
image: rust_full
commands:
- cargo clippy --all-features
doc:
group: default
image: rust_full
commands:
- cargo doc --all-features
build:
group: default
image: rust_full
commands:
- cargo build --all-features
build_release:
group: release
image: rust_full
commands:
- cargo build --all-features --release