chore: add .drone.yml for CI integration
This commit is contained in:
parent
b5d3a2c675
commit
160c8ca213
|
@ -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
|
Loading…
Reference in New Issue