chore: add .drone.yml for CI integration

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-01-27 21:12:38 -06:00
parent b5d3a2c675
commit 160c8ca213
1 changed files with 13 additions and 0 deletions

13
.drone.yml Normal file
View File

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