blob: e2467e5159b9ad3f0ba4e0155a59c39175e01b44 (
plain) (
tree)
|
|
image: alpine/edge
packages:
- go
- scdoc
sources:
- https://git.sr.ht/~rjarry/aerc
environment:
DESTDIR: ./out
tasks:
- checkfmt: |
cd aerc
make checkfmt
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...
|