parsing-rust/.drone.yml
koalp 0a82816272
Some checks failed
continuous-integration/drone/push Build is failing
ci: bump rust version and add rustfmt
2020-09-21 00:31:48 +02:00

15 lines
215 B
YAML

---
kind: pipeline
name: normal
type: docker
steps:
- name: test
image: rust:1.46
pull: true
commands:
- rustup component add rustfmt
- cargo build
- cargo test
- cargo fmt -- --check