2023-01-08 09:47:24 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
pipeline:
|
|
|
|
lint:
|
2023-01-08 20:37:32 +00:00
|
|
|
image: rustlang/rust:nightly-alpine
|
2023-01-08 09:47:24 +00:00
|
|
|
commands:
|
|
|
|
- cargo fmt --check
|
|
|
|
test:
|
2023-01-08 19:17:13 +00:00
|
|
|
image: rust:alpine
|
2023-01-08 09:47:24 +00:00
|
|
|
commands:
|
2023-01-08 20:31:56 +00:00
|
|
|
- rustup component add clippy
|
2023-01-08 09:47:24 +00:00
|
|
|
- apk add --no-cache musl-dev
|
|
|
|
- cargo clippy -- -Dwarnings
|
|
|
|
- RUST_BACKTRACE=1 cargo test
|