gofb/.drone.yml

22 lines
335 B
YAML

---
kind: pipeline
type: docker
name: default
workspace:
base: /go
path: src/git.trj.tw/golang/gofb
steps:
- name: test
image: golang:1.13
commands:
- apt update && apt install -y libcairo2-dev
- go get ./...
- go get github.com/ungerik/go-cairo
- go test ./...
trigger:
branch:
- master