maple/.drone.yml

15 lines
260 B
YAML
Raw Permalink Normal View History

2022-03-17 15:15:37 +04:00
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