15 lines
225 B
YAML
15 lines
225 B
YAML
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: rust
|
||
|
commands:
|
||
|
- cargo build --verbose --all
|
||
|
|
||
|
- name: fmt-check
|
||
|
image: rust
|
||
|
commands:
|
||
|
- rustup component add rustfmt
|
||
|
- cargo fmt --all -- --check
|