diff options
Diffstat (limited to '.builds/alpine-edge.yml')
-rw-r--r-- | .builds/alpine-edge.yml | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml index e2467e51..e256f61e 100644 --- a/.builds/alpine-edge.yml +++ b/.builds/alpine-edge.yml @@ -1,22 +1,23 @@ +--- image: alpine/edge packages: -- go -- scdoc + - go + - scdoc sources: -- https://git.sr.ht/~rjarry/aerc + - "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 ./... + - checkfmt: | + cd aerc + make checkfmt + - build: | + cd aerc + make + - install: | + cd aerc + make install + make checkinstall + - test: | + cd aerc + go test ./... |