pipeline: fmt: group: default image: rust_full commands: - cargo fmt --all -- --check clippy: group: default image: rust_full commands: - cargo clippy --all-features doc: group: default image: rust_full commands: - cargo doc --all-features build: group: default image: rust_full commands: - cargo build --all-features build_release: group: release image: rust_full commands: - cargo build --all-features --release