Add drone CI config.

This commit is contained in:
projectmoon 2020-11-05 19:20:56 +00:00
parent 66f9bc6013
commit 6a93194cbb
1 changed files with 11 additions and 0 deletions

11
.drone.yml Normal file
View File

@ -0,0 +1,11 @@
kind: pipeline
name: build-and-test
steps:
- name: test
image: rust:1.47
commands:
- apt-get update
- apt-get install -y cmake
- cargo build --verbose --all
- cargo test --verbose --all