Do build and test in one image
continuous-integration/drone/push Build is passing Details

This commit is contained in:
IamTheFij 2019-11-21 15:38:29 -08:00
parent c770da4d12
commit 5141df3878
1 changed files with 1 additions and 9 deletions

View File

@ -3,19 +3,11 @@ kind: pipeline
name: test
steps:
- name: download modules
image: golang:1.12
commands:
- go mod download
- name: build
image: golang:1.12
commands:
- make build
- name: test
image: golang:1.12
commands:
- make build
- make test
- name: check