steps: - name: clippy image: rust:${RUST_VERSION} commands: - rustup component add clippy - cargo clippy --all-targets --all-features -- -D warnings when: - event: [push, pull_request] matrix: RUST_VERSION: - "1.91.1" - "1.91.0"