chore: add CI config

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-02-10 19:19:33 -06:00
parent ef13383f5a
commit 80cbda2510
1 changed files with 10 additions and 0 deletions

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo test
image: rust:1.49
commands:
- cargo build --verbose --all
- cargo test --verbose --all