go-tta/.drone.yml
DataHoarder 01ef1ed311
All checks were successful
continuous-integration/drone/push Build is passing
Updated URLs / CI
2022-02-26 14:45:39 +01:00

15 lines
265 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang:1.18rc1-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev
- go test -cover -v
...