go-vorbis/.drone.yml
DataHoarder 303b3425ee
All checks were successful
continuous-integration/drone/push Build is passing
Added CI
2022-07-28 14:45:10 +02:00

14 lines
235 B
YAML

---
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 ./...
...