filebrowser/.travis.yml

23 lines
634 B
YAML
Raw Normal View History

2017-06-25 16:59:08 +08:00
language: go
2017-07-30 02:38:47 +08:00
go: 1.8.3
2017-07-29 22:47:01 +08:00
2017-07-20 16:08:17 +08:00
env:
- "PATH=/home/travis/gopath/bin:$PATH"
2017-06-25 16:59:08 +08:00
install:
2017-07-25 19:11:03 +08:00
- go get ./...
# Install gometalinter and certain linters
- go get github.com/alecthomas/gometalinter
- go get github.com/client9/misspell/cmd/misspell
- go get github.com/gordonklaus/ineffassign
- go get golang.org/x/tools/cmd/goimports
- go get github.com/tsenart/deadcode
2017-06-25 16:59:08 +08:00
script:
2017-07-25 19:25:15 +08:00
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --exclude="rice-box.go" --tests ./...
2017-07-25 19:33:47 +08:00
- go test ./... -timeout 30s
2017-07-27 15:12:02 +08:00
2017-07-30 02:35:49 +08:00
after_success:
- test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash