Compare commits

...

2 commits

Author SHA1 Message Date
463804fff7 Make GOPATH shared between build steps
All checks were successful
continuous-integration/drone/push Build is passing
2019-06-28 11:05:22 +02:00
b958b0e8df Add "go test" to drone suite 2019-06-28 11:04:58 +02:00

View file

@ -2,6 +2,13 @@ kind: pipeline
name: default
steps:
- name: test_draftbot
image: golang
commands:
- cd ./draftbot
- GOPROXY=https://modules.fromouter.space go mod download
- CGO_ENABLED=0 go test .
- name: build_draftbot
image: golang
commands:
@ -28,4 +35,8 @@ steps:
event:
- push
- tag
branch: master
branch: master
volumes:
- name: gopath
temp: {}