drone-yaml/.drone.yml

16 lines
147 B
YAML
Raw Normal View History

2019-01-22 23:44:17 +00:00
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
2019-02-18 16:07:01 +00:00
image: golang:1.11
2019-01-22 23:44:17 +00:00
commands:
- go test ./...
...