mirror of
https://github.com/beego/bee.git
synced 2024-11-05 11:50:55 +00:00
20 lines
640 B
YAML
20 lines
640 B
YAML
language: go
|
|
go:
|
|
- 1.6.3
|
|
- 1.7.3
|
|
- 1.8
|
|
install:
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- go get -u github.com/opennota/check/cmd/structcheck
|
|
- go get -u honnef.co/go/tools/cmd/gosimple
|
|
- go get -u honnef.co/go/tools/cmd/staticcheck
|
|
- go get -u honnef.co/go/tools/cmd/unused
|
|
- go get -u github.com/mdempsky/unconvert
|
|
script:
|
|
- go vet $(go list ./... | grep -v /vendor/)
|
|
- structcheck $(go list ./... | grep -v /vendor/)
|
|
- gosimple $(go list ./... | grep -v /vendor/)
|
|
- staticcheck $(go list ./... | grep -v /vendor/)
|
|
- unused $(go list ./... | grep -v /vendor/)
|
|
- unconvert $(go list ./... | grep -v /vendor/)
|