Configure Drone CI

This commit is contained in:
Pierre HUBERT 2022-09-02 15:42:20 +02:00
parent 1321cf79c6
commit 55da596587

13
.drone.yml Normal file
View File

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