CI: .woodpecker.yml

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2023-01-08 10:47:24 +01:00
parent b7939821a9
commit e9becda2b0
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

13
.woodpecker.yml Normal file
View file

@ -0,0 +1,13 @@
---
pipeline:
lint:
image: rust:latest
commands:
- cargo fmt --check
test:
image: rust:latest
commands:
- apk add --no-cache musl-dev
- cargo clippy -- -Dwarnings
- RUST_BACKTRACE=1 cargo test