ci: create

This commit is contained in:
Adrien Marquès 2019-05-04 00:05:20 +02:00
parent 811cf89250
commit 9bd612c136
1 changed files with 24 additions and 0 deletions

24
.drone.yml Normal file
View File

@ -0,0 +1,24 @@
kind: pipeline
name: default
steps:
- name: test
image: golang
volumes:
- name: deps
path: /go
commands:
- go get ./...
- go test -v ./...
- name: build
image: golang
volumes:
- name: deps
path: /go
commands:
- GO111MODULE=on go build
volumes:
- name: deps
temp: {}