fw-rust, readme: Add CI config

This commit is contained in:
finga 2022-03-06 18:18:09 +01:00
parent 8315560daa
commit 4bc3e84bdd
2 changed files with 29 additions and 1 deletions

28
.woodpecker.yml Normal file
View file

@ -0,0 +1,28 @@
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