go-bouquins/.drone.yml

29 lines
373 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:
- 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:23:40 +00:00
hmac: 0c10eea731519ad456e14a142ae8cd0f769cd2ccbe252b7e56cae5b97d8550ff
2019-09-11 13:03:12 +00:00
...