blob: 20508ea95e94348ca81dd3b921298953dc0b8eed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
when:
- event: manual
- event: pull_request
steps:
check:
image: rust
commands:
- cargo check
check-fmt:
image: rust
commands:
- rustup component add rustfmt
- cargo fmt --check
|