clock_generator/.woodpecker.yml

29 lines
501 B
YAML
Raw Normal View History

2022-03-06 18:18:09 +01:00
pipeline:
fmt:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo fmt --all -- --check
clippy:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo clippy --all-features
doc:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo doc --all-features
build:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo build --all-features