SeaBattle/.drone.yml

15 lines
192 B
YAML
Raw Permalink Normal View History

2022-10-16 12:50:05 +00:00
---
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