pancap/.drone.yml

24 lines
327 B
YAML
Raw Normal View History

2019-12-01 16:06:14 +00:00
kind: pipeline
name: default
platform:
2019-12-01 16:07:36 +00:00
os: linux
arch: amd64
2019-12-01 16:06:14 +00:00
steps:
- name: test
image: golang:latest
commands:
2019-12-01 16:06:54 +00:00
- go test -v .
2019-12-01 16:06:14 +00:00
- name: coverage
image: golang:latest
commands:
- go test -coverprofile=cover.out
- go tool cover -func=cover.out
- name: build
image: golang:latest
commands:
- go build .