pancap/.drone.yml
2019-12-01 17:06:54 +01:00

24 lines
325 B
YAML

kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
image: golang:latest
commands:
- go test -v .
- 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 .