mightyohm-gc-exporter/.woodpecker.yml
finga e156d5958b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci: Move build_release into default group
2022-04-24 17:59:06 +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: default
image: rust_full
commands:
- cargo build --all-features --release