Jake Hillion
576e6079ea
All checks were successful
continuous-integration/drone/push Build is passing
27 lines
408 B
YAML
27 lines
408 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
image: golang:1.15
|
|
environment:
|
|
GOPROXY: http://10.20.0.25:3142|direct
|
|
volumes:
|
|
- name: cache
|
|
path: /go
|
|
commands:
|
|
- go test -i ./...
|
|
|
|
- name: test
|
|
image: golang:1.15
|
|
volumes:
|
|
- name: cache
|
|
path: /go
|
|
commands:
|
|
- go test ./...
|
|
|
|
volumes:
|
|
- name: cache
|
|
temp: {}
|