blob: 2f1b6ec86123e7f4f597fd04b21f11c7c510c6d4 (
plain)
1
2
3
4
5
6
7
8
9
|
kind: pipeline
name: default
steps:
- name: test
image: "golang:alpine"
commands:
- apk add --no-cache build-base ca-certificates git
- go get github.com/mattn/goveralls
- goveralls -v -service drone.io || exit 0
|