14 lines
215 B
YAML
14 lines
215 B
YAML
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: hub.aidev.ru/rust
|
||
|
commands:
|
||
|
- cargo build --verbose --all
|
||
|
|
||
|
- name: fmt-check
|
||
|
image: hub.aidev.ru/rust
|
||
|
commands:
|
||
|
- cargo fmt --all -- --check
|