parent
8315560daa
commit
4bc3e84bdd
2 changed files with 29 additions and 1 deletions
28
.woodpecker.yml
Normal file
28
.woodpecker.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue