scansion-rs/.woodpecker.yml
Maxime “pep” Buquet 28580640b3
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
CI: Use nightly for rustfmt
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2023-01-08 21:37:32 +01:00

14 lines
291 B
YAML

---
pipeline:
lint:
image: rustlang/rust:nightly-alpine
commands:
- cargo fmt --check
test:
image: rust:alpine
commands:
- rustup component add clippy
- apk add --no-cache musl-dev
- cargo clippy -- -Dwarnings
- RUST_BACKTRACE=1 cargo test