go-vorbis/.drone.yml

14 lines
235 B
YAML
Raw Permalink Normal View History

2022-07-28 12:43:42 +00:00
---
kind: pipeline
type: docker
name: full
steps:
- name: test
image: golang:1.18-alpine
commands:
- apk update
- apk add --no-cache libvorbis-dev gcc musl-dev pkgconfig
- go test -cover -race -v ./...
...