Add basic CI
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Pierre HUBERT 2025-02-25 11:23:52 +01:00
parent 13fdef8053
commit d7b3a9ad12

12
.drone.yml Normal file
View File

@ -0,0 +1,12 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo test