mirror of https://github.com/tidwall/tile38.git
22 lines
460 B
YAML
22 lines
460 B
YAML
language: go
|
|
go:
|
|
- 1.14.x
|
|
- 1.13.x
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- go get github.com/mattn/goveralls
|
|
- go get github.com/wadey/gocovmerge
|
|
- 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 -race ./...
|
|
- if [[ "$TRAVIS_GO_VERSION" =~ 1.13 ]]; then ./scripts/cov.sh TRAVIS; fi
|