dissertation-2-code/.drone.yml
Jake Hillion 576e6079ea
All checks were successful
continuous-integration/drone/push Build is passing
Go modules caching
2020-10-30 22:48:30 +00:00

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: {}