mirror of https://github.com/tidwall/tile38.git
31 lines
667 B
YAML
31 lines
667 B
YAML
|
language: go
|
||
|
sudo: false
|
||
|
go:
|
||
|
- 1.12.x
|
||
|
- 1.11.x
|
||
|
|
||
|
install:
|
||
|
- go get -t ./...
|
||
|
- go get github.com/mattn/goveralls
|
||
|
- go get -u honnef.co/go/tools/cmd/staticcheck
|
||
|
- go get -u github.com/client9/misspell/cmd/misspell
|
||
|
|
||
|
before_script:
|
||
|
- $(exit $(go fmt ./... | wc -l))
|
||
|
- go vet ./...
|
||
|
- misspell -error -locale US .
|
||
|
- staticcheck ./...
|
||
|
|
||
|
script:
|
||
|
- go test -v
|
||
|
- go test -v --race
|
||
|
- go test -v -covermode=count -coverprofile=coverage.out
|
||
|
- $HOME/gopath/bin/goveralls -coverprofile coverage.out -service travis-ci
|
||
|
|
||
|
#deploy:
|
||
|
#- provider: script
|
||
|
# skip_cleanup: true
|
||
|
# script: curl -sL http://git.io/goreleaser | bash
|
||
|
# on:
|
||
|
# tags: true
|
||
|
# condition: $TRAVIS_OS_NAME = linux
|