go-bouquins/.drone.yml
Meutel 216f6956a4
Some checks failed
continuous-integration/drone/push Build is failing
Go vet
2019-09-11 16:30:47 +02:00

29 lines
438 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
environment:
CGO_ENABLED: 1
GOOS: linux
commands:
- go test ./...
- go build -a -installsuffix cgo .
- go get golang.org/x/lint
- $GOPATH/bin/golint ./...
- go vet ./...
trigger:
event:
- push
---
kind: signature
hmac: 0a2a54950b337ca2c25ac140e8f874c7e10fc0401c819509e07caf2c5bd63f9e
...