added goconvey to vendor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sebastian Frank
2019-03-19 21:29:16 +01:00
parent 5cc4b9d001
commit 3e3d1f05a0
5 changed files with 20 additions and 2 deletions

View File

@@ -6,6 +6,14 @@ workspace:
path: src/gitbase.de/apairon/mark2web
steps:
- name: init submodules
image: docker:git
commands:
- git submodule update --init --recursive
- git fetch --tags
when:
event: [ push, tag ]
- name: test
image: golang:latest
environment:
@@ -13,8 +21,6 @@ steps:
GOOS: linux
GOARCH: amd64
commands:
- git submodule update --init --recursive
- git fetch --tags
- go test -v -coverprofile coverage.out ./pkg/*
when:
event: [ push, tag ]