gofb/.drone.yml

22 lines
335 B
YAML
Raw Permalink Normal View History

2019-12-10 14:37:20 +00:00
---
kind: pipeline
type: docker
name: default
2019-12-10 14:45:42 +00:00
workspace:
base: /go
path: src/git.trj.tw/golang/gofb
2019-12-10 14:37:20 +00:00
steps:
- name: test
image: golang:1.13
commands:
2019-12-10 14:48:45 +00:00
- apt update && apt install -y libcairo2-dev
2019-12-10 14:37:20 +00:00
- go get ./...
2019-12-10 14:47:17 +00:00
- go get github.com/ungerik/go-cairo
2019-12-10 14:37:20 +00:00
- go test ./...
trigger:
branch:
- master