merp/.drone.yml

16 lines
200 B
YAML
Raw Normal View History

2019-11-07 20:40:04 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang:1.13
commands:
- go get -v
- make build
2019-11-07 20:50:42 +00:00
- name: lint
image: golang:1.13
commands:
- go get -v
2019-11-07 20:49:35 +00:00
- make lint