mightyohm-gc-exporter/.woodpecker.yml
finga ccb05e9b02
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
In CI pipeline also run cargo checkmate
2022-04-24 17:31:44 +02:00

37 lines
610 B
YAML

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
checkmate:
group: default
image: rust_full
commands:
- cargo checkmate
build:
group: default
image: rust_full
commands:
- cargo build --all-features
build_release:
group: release
image: rust_full
commands:
- cargo build --all-features --release