SeaBattle/.drone.yml

15 lines
192 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
- cd rust
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo test