--- 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