merp/.drone.yml

16 lines
200 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang:1.13
commands:
- go get -v
- make build
- name: lint
image: golang:1.13
commands:
- go get -v
- make lint