go-tta/.drone.yml

15 lines
265 B
YAML
Raw Normal View History

2022-02-26 13:45:39 +00:00
---
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
...