15 lines
250 B
YAML
15 lines
250 B
YAML
arch: x86_64
|
|
environment:
|
|
PROJECT_NAME: 'ditty'
|
|
CGO_ENABLED: '1'
|
|
GO111MODULE: 'on'
|
|
image: alpine/edge
|
|
packages:
|
|
- alsa-lib-dev
|
|
- go
|
|
sources:
|
|
- https://git.sr.ht/~tslocum/ditty
|
|
tasks:
|
|
- test: |
|
|
cd $PROJECT_NAME
|
|
go test ./...
|