aerc/.build.yml
Robin Jarry 6857ab7a71 build: add check for code formatting
Let's avoid pushing unformatted code.

Signed-off-by: Robin Jarry <robin@jarry.cc>
2021-12-11 23:13:27 +01:00

17 lines
207 B
YAML

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 ./...