go-pus/.drone.yml

16 lines
324 B
YAML
Raw Normal View History

2022-01-27 16:19:10 +00:00
---
kind: pipeline
type: docker
name: full
steps:
- name: Build
image: golang:1.18-rc-bullseye
commands:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y pkg-config libopus-dev libopusfile-dev moreutils
- gofmt -d . | tee /dev/stderr | ifne false
- go test -race -v ./...
...