drone-yaml/.drone.yml

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