Add CI script
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Pierre HUBERT 2022-05-05 17:13:47 +02:00
parent 1c8c471fc6
commit 144b7a982f

20
.drone.yml Normal file
View File

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