2017-10-22 05:37:38 +02:00
|
|
|
sudo: false
|
|
|
|
language: go
|
2020-05-09 22:49:03 +02:00
|
|
|
go:
|
|
|
|
- "1.13.x"
|
2019-07-01 05:14:09 +02:00
|
|
|
script:
|
|
|
|
- go test -v ./...
|
2020-05-09 22:49:03 +02:00
|
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s v1.22.2
|
2019-07-01 05:14:09 +02:00
|
|
|
- ./bin/golangci-lint run
|
|
|
|
- git clean -fdx .
|
2017-10-22 05:37:38 +02:00
|
|
|
after_success:
|
2020-05-09 22:49:03 +02:00
|
|
|
curl -sL https://git.io/goreleaser | bash && goreleaser
|
2017-10-22 05:37:38 +02:00
|
|
|
|