filebrowser/.travis.yml

23 lines
634 B
YAML
Raw Normal View History

2017-06-25 08:59:08 +00:00
language: go
2017-07-29 18:38:47 +00:00
go: 1.8.3
2017-07-29 14:47:01 +00:00
2017-07-20 08:08:17 +00:00
env:
- "PATH=/home/travis/gopath/bin:$PATH"
2017-06-25 08:59:08 +00:00
install:
2017-07-25 11:11:03 +00: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 08:59:08 +00:00
script:
2017-07-25 11:25:15 +00:00
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --exclude="rice-box.go" --tests ./...
2017-07-25 11:33:47 +00:00
- go test ./... -timeout 30s
2017-07-27 07:12:02 +00:00
2017-07-29 18:35:49 +00:00
after_success:
- test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash