11 lines
289 B
YAML
11 lines
289 B
YAML
when:
|
|
- event: [pull_request]
|
|
|
|
steps:
|
|
clippy:
|
|
image: git.ragarock.moe/silvana/yuno/rust:latest
|
|
environment: [CARGO_TERM_COLOR=always, CARGO_HOME=./.cargo-home]
|
|
commands:
|
|
- rustup default nightly
|
|
- rustup component add clippy
|
|
- cargo clippy -- -D warnings
|