maple/.drone.yml
Andrey Tkachenko 29c21532cf
All checks were successful
continuous-integration/drone/push Build is passing
Add CI
2022-03-17 15:26:25 +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