marvin/.drone.yml
James Walker b36548608e
All checks were successful
continuous-integration/drone/push Build is passing
👷 add drone.yml
2022-12-10 13:02:38 -05:00

17 lines
308 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: rust:1.65
commands:
# Format
- rustup component add rustfmt
- cargo fmt --verbose --all -- --check
# Lint
- rustup component add clippy
- cargo clippy --verbose --all -- -D warnings
# Test
- cargo test --verbose --all