diff options
author | Robin Jarry <robin@jarry.cc> | 2022-04-14 21:18:30 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-04-14 21:28:38 +0200 |
commit | 7f4069f0c5dfb803bf432066f220d3ac85d09968 (patch) | |
tree | 5c4e916b2811f29d2e8e213799f213783551f876 | |
parent | f6e34e4cf16d2506d865adb35a650c383b8dc6fd (diff) | |
download | aerc-7f4069f0c5dfb803bf432066f220d3ac85d09968.tar.gz |
builds: reformat yaml
Use two spaces for indentation consistently.
Signed-off-by: Robin Jarry <robin@jarry.cc>
-rw-r--r-- | .builds/alpine-edge.yml | 33 | ||||
-rw-r--r-- | .builds/debian-stable.yml | 27 | ||||
-rw-r--r-- | .builds/fedora-latest.yml | 27 | ||||
-rw-r--r-- | .builds/openbsd.yml | 16 |
4 files changed, 53 insertions, 50 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 ./... 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 ./... diff --git a/.builds/fedora-latest.yml b/.builds/fedora-latest.yml index 20455061..0e0cade6 100644 --- a/.builds/fedora-latest.yml +++ b/.builds/fedora-latest.yml @@ -1,19 +1,20 @@ +--- image: fedora/latest 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 ./... diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 0213bafe..88c1a1c2 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -4,17 +4,17 @@ packages: - go - scdoc sources: - - https://git.sr.ht/~rjarry/aerc + - "https://git.sr.ht/~rjarry/aerc" environment: DESTDIR: ./out tasks: - build: | - cd aerc - make + cd aerc + make - install: | - cd aerc - make install - make checkinstall + cd aerc + make install + make checkinstall - test: | - cd aerc - go test ./... + cd aerc + go test ./... |