Add drone CI pipeline

This commit is contained in:
Pierre Hubert 2022-10-16 14:50:05 +02:00
parent 4501be6a43
commit 7d4cc52d7b
1 changed files with 14 additions and 0 deletions

14
.drone.yml Normal file
View File

@ -0,0 +1,14 @@
---
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