chore: add ci workflow

This commit is contained in:
ThetaDev 2023-03-31 21:52:16 +02:00
parent d33829860e
commit c78b4faacd

10
.woodpecker.yml Normal file
View file

@ -0,0 +1,10 @@
pipeline:
test:
image: rust:latest
environment:
- CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
commands:
- rustup component add rustfmt clippy
- cargo fmt --all --check
- cargo clippy --all --all-features -- -D warnings
- cargo test --workspace