Add CI
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Andrey Tkachenko 2023-05-12 11:15:38 +04:00
parent 261577bfc7
commit 475e612564

14
.drone.yml Normal file
View File

@ -0,0 +1,14 @@
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