Compare commits

..

2 Commits

Author SHA1 Message Date
Ian Fijolek
5141df3878 Do build and test in one image 2019-11-21 15:38:29 -08:00
Ian Fijolek
c770da4d12 Try to cache go modules 2019-11-21 15:36:30 -08:00
+1 -4
View File
@@ -3,14 +3,11 @@ kind: pipeline
name: test
steps:
- name: build
image: golang:1.12
commands:
- make build
- name: test
image: golang:1.12
commands:
- make build
- make test
- name: check