chore: add CI build config

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-03-01 21:36:06 -06:00
parent e4dfea45c5
commit de801870dd
1 changed files with 12 additions and 0 deletions

12
.drone.yml Normal file
View File

@ -0,0 +1,12 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo test
image: rust:latest
commands:
- apt-get update
- apt-get install -y libsqlite3-dev
- cargo build --verbose --all
- cargo test --verbose --all