diff options
Diffstat (limited to '.builds/debian-stable.yml')
-rw-r--r-- | .builds/debian-stable.yml | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/.builds/debian-stable.yml b/.builds/debian-stable.yml index b6bc7f1f..88961f14 100644 --- a/.builds/debian-stable.yml +++ b/.builds/debian-stable.yml @@ -1,19 +1,20 @@ +--- image: debian/stable packages: -- golang -- scdoc + - golang + - scdoc sources: -- https://git.sr.ht/~rjarry/aerc + - "https://git.sr.ht/~rjarry/aerc" environment: DESTDIR: ./out tasks: -- build: | - cd aerc - make -- install: | - cd aerc - make install - make checkinstall -- test: | - cd aerc - go test ./... + - build: | + cd aerc + make + - install: | + cd aerc + make install + make checkinstall + - test: | + cd aerc + go test ./... |