clock_generator/.woodpecker.yml
finga 698965fcf7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
firmware: Remove the c attempt of the firmware
2023-06-07 22:17:01 +02:00

35 lines
623 B
YAML

pipeline:
fmt:
group: default
image: rust_full
commands:
- cd firmware/
- cargo fmt --all -- --check
clippy:
group: default
image: rust_full
commands:
- cd firmware/
- cargo clippy --all-features
doc:
group: default
image: rust_full
commands:
- cd firmware/
- cargo doc --all-features
build:
group: default
image: rust_full
commands:
- cd firmware/
- cargo build --all-features
build_release:
group: default
image: rust_full
commands:
- cd firmware/
- cargo build --all-features --release