xcore-t/.drone.yml

20 lines
288 B
YAML
Raw Normal View History

2022-03-07 14:04:31 +04:00
kind: pipeline
name: default
steps:
- name: build
image: rust
commands:
- cargo build --verbose --all
- name: test
image: rust
commands:
- cargo test --all
- name: fmt-check
image: rust
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check