xcore-t/.drone.yml
Andrey Tkachenko fe3bca4744
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2022-03-07 15:48:00 +04:00

20 lines
288 B
YAML

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