This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
SeaBattle/.drone.yml
2022-10-16 14:50:05 +02:00

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