File: .build.yml

package info (click to toggle)
golang-sourcehut-emersion-gqlclient 0.0~git20230820.8873fe0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: makefile: 2
file content (15 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
image: alpine/latest
packages:
  - go
sources:
  - https://git.sr.ht/~emersion/gqlclient
tasks:
  - build: |
      cd gqlclient
      go build -v ./...
  - test: |
      cd gqlclient
      go test -v ./...
  - gofmt: |
      cd gqlclient
      test -z $(gofmt -l .)