drone-yaml/.drone.yml

17 lines
164 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:
2019-02-22 01:01:17 +00:00
- go vet ./...
2019-01-22 23:44:17 +00:00
- go test ./...
...