drone-yaml/.drone.yml

16 lines
147 B
YAML
Raw Normal View History

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