go-bouquins/.drone.yml

25 lines
350 B
YAML
Raw Normal View History

2019-09-11 13:03:12 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
environment:
CGO_ENABLED: 1
GOOS: linux
commands:
- go build -a -installsuffix cgo -o app .
2019-09-11 13:07:26 +00:00
- go test
2019-09-11 13:03:12 +00:00
trigger:
event:
- push
---
kind: signature
2019-09-11 13:07:26 +00:00
hmac: c2c85efbea280e4aedbd78ebc249f61ac8928438ca61af8f7bd5779d153781ad
2019-09-11 13:03:12 +00:00
...