when: - event: pull_request steps: - name: fmt image: rust:1.84 commands: - rustup component add rustfmt - cargo fmt -- --check - name: clippy image: rust:1.84 commands: - rustup component add clippy - cargo clippy -- -D warnings - name: test image: rust:1.84 commands: - cargo test