add woodpecker config

This commit is contained in:
Paul Campbell 2023-07-25 16:58:17 +01:00
parent 6d967f5eae
commit 4a19470712

9
.woodpecker.yml Normal file
View file

@ -0,0 +1,9 @@
pipeline:
build:
image: rust
commands:
- rustup component add rustfmt clippy
- cargo --version
- cargo fmt --check
- cargo clippy --fix -- -Dwarnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used
- cargo test