Migrate drone config to 1.0.0

This commit is contained in:
Thomas Boerger 2019-02-19 10:07:06 +01:00
parent 93b7ded1c6
commit a19c0e3def
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B
1 changed files with 38 additions and 16 deletions

View File

@ -1,18 +1,40 @@
workspace:
base: /go
path: src/github.com/drone/drone-template-lib
---
kind: pipeline
name: testing
pipeline:
deps:
image: golang:1.10
pull: true
commands:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
platform:
os: linux
arch: amd64
test:
image: golang:1.10
pull: true
commands:
- go vet ./...
- go test -cover ./...
steps:
- name: vet
pull: always
image: golang:1.11
commands:
- go vet ./...
environment:
GO111MODULE: on
volumes:
- name: gopath
path: /go
- name: test
pull: always
image: golang:1.11
commands:
- go test -cover ./...
environment:
GO111MODULE: on
volumes:
- name: gopath
path: /go
volumes:
- name: gopath
temp: {}
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
- "refs/pull/**"