drone-yaml/.drone.yml
Brad Rydzewski 259bc272c3 update yaml
2019-02-21 17:01:17 -08:00

17 lines
164 B
YAML

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