rustypipe/.woodpecker.yml
ThetaDev c78b4faacd
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
chore: add ci workflow
2023-03-31 21:52:16 +02:00

10 lines
287 B
YAML

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