yarnn/.drone.yml
Andrey Tkachenko 2fa6098f65
Some checks failed
continuous-integration/drone/push Build is failing
Add CI
2022-03-17 15:32:55 +04:00

15 lines
260 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: rustlang/rust:nightly
commands:
- cargo build --verbose --all
- name: fmt-check
image: rustlang/rust:nightly
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check