Add drone CI pipeline
continuous-integration/drone Build is passing Details

This commit is contained in:
Pierre Hubert 2023-03-19 20:45:16 +01:00
parent 20b421a486
commit decb99074a
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:
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo test