Add Drone configuration

This commit is contained in:
Pierre HUBERT 2023-04-28 19:23:07 +02:00
parent 661792b803
commit 00055ed260

14
.drone.yml Normal file
View File

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