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