Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Use standard drone config similar to other drone libs #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
---
kind: pipeline
name: default
name: testing

platform:
os: linux
arch: amd64

steps:
- name: test
- name: vet
image: golang:1.11
commands:
- go test -v --cover ./...
- go vet ./...
tboerger marked this conversation as resolved.
Show resolved Hide resolved
volumes:
- name: gopath
path: /go

...
- name: test
image: golang:1.11
commands:
- go test -cover ./...
volumes:
- name: gopath
path: /go

volumes:
- name: gopath
temp: {}