drone-template-lib/.drone.yml

35 lines
405 B
YAML
Raw Normal View History

2019-02-19 10:07:06 +01:00
---
kind: pipeline
name: testing
2018-03-30 01:04:58 +02:00
2019-02-19 10:07:06 +01:00
platform:
os: linux
arch: amd64
2018-03-30 01:04:58 +02:00
2019-02-19 10:07:06 +01:00
steps:
- name: vet
2019-08-01 01:07:15 +02:00
image: golang:1.12
2019-02-19 10:07:06 +01:00
commands:
- go vet ./...
volumes:
- name: gopath
path: /go
- name: test
2019-08-01 01:07:15 +02:00
image: golang:1.12
2019-02-19 10:07:06 +01:00
commands:
- go test -cover ./...
volumes:
- name: gopath
path: /go
volumes:
- name: gopath
temp: {}
trigger:
ref:
- refs/heads/master
2019-08-01 01:07:15 +02:00
- refs/tags/**
- refs/pull/**