Added CI
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-07-28 14:43:42 +02:00
parent 0d9c44a7e8
commit 303b3425ee
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

13
.drone.yml Normal file
View file

@ -0,0 +1,13 @@
---
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 ./...
...