2018-05-01 02:37:51 +05:00
|
|
|
sudo: false
|
|
|
|
language: go
|
2019-10-13 13:55:38 +05:00
|
|
|
script:
|
|
|
|
- go test -v ./...
|
|
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s v1.15.0
|
|
|
|
- ./bin/golangci-lint run
|
|
|
|
- git clean -fdx .
|
2018-05-01 02:37:51 +05:00
|
|
|
after_success:
|
2019-10-13 13:55:38 +05:00
|
|
|
curl -sL https://git.io/goreleaser | bash && goreleaser
|
2018-05-01 02:37:51 +05:00
|
|
|
|