go-bouquins/.drone.yml

30 lines
388 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
- name: test
image: golang
commands:
2019-09-11 13:30:22 +00:00
- go get
2019-09-11 13:23:40 +00:00
- go test ./...
2019-09-11 13:03:12 +00:00
- name: build
image: golang
environment:
CGO_ENABLED: 1
GOOS: linux
commands:
2019-09-11 13:23:40 +00:00
- go build
2019-09-11 13:03:12 +00:00
trigger:
event:
- push
---
kind: signature
2019-09-11 13:30:22 +00:00
hmac: 5165dae715c1e3f706e6e2493093e3935e804409845b8891885ee8ae8c6a3784
2019-09-11 13:03:12 +00:00
...