drone-yaml/.drone.yml
2019-02-18 08:07:01 -08:00

16 lines
147 B
YAML

---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
image: golang:1.11
commands:
- go test ./...
...