2021-02-04 00:30:55 +03:00
|
|
|
language: go
|
|
|
|
sudo: false
|
2021-07-30 03:23:41 +03:00
|
|
|
|
|
|
|
arch:
|
|
|
|
- amd64
|
|
|
|
- ppc64le
|
2021-02-04 00:30:55 +03:00
|
|
|
go:
|
2021-07-30 03:23:41 +03:00
|
|
|
- 1.16.x
|
|
|
|
- 1.15.x
|
2021-02-04 00:30:55 +03:00
|
|
|
|
|
|
|
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
|
2021-07-30 03:23:41 +03:00
|
|
|
# condition: $TRAVIS_OS_NAME = linux
|