Add "go test" to drone suite

This commit is contained in:
Hamcha 2019-06-28 11:04:58 +02:00
parent 9b5ad472c7
commit b958b0e8df
1 changed files with 7 additions and 0 deletions

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: