dissertation-2-code/.drone.yml
Jake Hillion 0bf597d5c5
Some checks failed
continuous-integration/drone/push Build is failing
dronefile fix
2020-10-25 22:06:33 +00:00

25 lines
346 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: install
image: golang:1.15
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: {}