diplonat/.drone.yml
adrien bf226d077e
All checks were successful
continuous-integration/drone/push Build is passing
added a line to CI to actually install rustfmt on the runner
2021-09-11 16:38:09 +02:00

24 lines
408 B
YAML

---
kind: pipeline
name: default
workspace:
base: /drone/diplonat
steps:
- name: code style
image: rust:1.47
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check
# - name: code quality
# image: rust:1.47
# commands:
# - cargo clippy -- --deny warnings
# - name: test
# image: rust:1.47
# commands:
# - cargo build --verbose --all
# - cargo test --verbose --all