blob: fa9a49f663bdaba48554ebfc26fad748e4ff5820 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
image: alpine/edge
packages:
- go
- scdoc
sources:
- https://git.sr.ht/~rjarry/aerc
tasks:
- checkfmt: |
cd aerc
make checkfmt
- build: |
cd aerc
make
- test: |
cd aerc
go test ./...
|