droneyaml/.drone.yml

26 lines
271 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: alpine
volumes:
- name: cache
path: /go
commands:
- ls /
- name: build
image: alpine
volumes:
- name: cache
path: /go
commands:
- ls /
volumes:
- name: cache
temp: {}