.travis.yml

 1sudo: false
 2language: go
 3script:
 4  - go test -v ./...
 5  - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s v1.20.0
 6  - ./bin/golangci-lint run
 7  - git clean -fdx .
 8after_success:
 9  curl -sL https://git.io/goreleaser | bash && goreleaser
10