go-bouquins/.drone.yml

37 lines
548 B
YAML
Raw Normal View History

2019-09-11 13:03:12 +00:00
---
kind: pipeline
type: docker
name: default
steps:
2019-09-11 13:23:40 +00:00
2019-09-11 13:03:12 +00:00
- name: build
image: golang
environment:
CGO_ENABLED: 1
GOOS: linux
commands:
2019-09-11 13:52:45 +00:00
- go test ./...
2019-09-11 13:44:59 +00:00
- go build -a -installsuffix cgo .
2019-09-11 15:13:12 +00:00
- name: lint
image: golang
commands:
2019-09-11 15:01:09 +00:00
- go get -u golang.org/x/lint/golint
2019-09-11 15:09:08 +00:00
- golint -set_exit_status ./...
2019-09-11 15:13:12 +00:00
- name: vet
image: golang
commands:
2019-09-11 14:30:47 +00:00
- go vet ./...
2019-09-11 13:03:12 +00:00
trigger:
event:
- push
---
kind: signature
2019-09-11 15:13:12 +00:00
hmac: 663682f7b45c7f2629991785fc04170d60a0232719bac11d29620882ad857277
2019-09-11 13:03:12 +00:00
...