Maxime “pep” Buquet
28580640b3
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
14 lines
291 B
YAML
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
|