File: circle.yml

package info (click to toggle)
golang-github-docker-go-units 0.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bookworm-proposed-updates, experimental, forky, sid, trixie
  • size: 120 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
dependencies:
  post:
    # install golint
    - go get golang.org/x/lint/golint

test:
  pre:
    # run analysis before tests
    - go vet ./...
    - test -z "$(golint ./... | tee /dev/stderr)"
    - test -z "$(gofmt -s -l . | tee /dev/stderr)"