master sewn/kohai / .builds / linux.yml
 1image: alpine/latest
 2packages:
 3    - go
 4    - scdoc
 5sources:
 6    - https://git.sr.ht/~delthas/senpai
 7artifacts:
 8    - senpai/senpai
 9tasks:
10    - build: |
11          cd senpai
12          make          
13    - test: |
14          cd senpai
15          go test ./...          
16    - gofmt: |
17          cd senpai
18          test -z $(gofmt -l .)