Add Drone CI config file

This commit is contained in:
Juan Carlos Mejías Rodríguez 2019-08-13 11:00:33 -04:00
parent 50d246ecf7
commit 93581c0130

20
.drone.yml Normal file
View File

@ -0,0 +1,20 @@
kind: pipeline
name: default
steps:
- name: fetch
image: docker:git
commands:
- git fetch --tags
- name: test
image: golang
volumes:
- name: deps
path: /go
commands:
- go test -cover -v ./...
volumes:
- name: deps
temp: {}