muchrooms/.woodpecker.yml
Maxime “pep” Buquet c159f0b735
CI: try moving clippy in testing stage
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-12-27 09:19:46 +01:00

13 lines
272 B
YAML

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