feat: add CI integration

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-01-27 22:44:13 -06:00
parent 325304deff
commit 58b40d400c
1 changed files with 11 additions and 0 deletions

11
.drone.yml Normal file
View File

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