2019-11-18 20:33:15 +03:00
|
|
|
language: go
|
|
|
|
go:
|
|
|
|
- 1.3.x
|
2020-09-23 02:43:58 +03:00
|
|
|
- 1.12.x
|
|
|
|
- 1.13.x
|
|
|
|
- 1.x
|
2019-11-18 20:33:15 +03:00
|
|
|
before_install:
|
|
|
|
- go get github.com/axw/gocov/gocov
|
|
|
|
- go get github.com/mattn/goveralls
|
|
|
|
- go get golang.org/x/tools/cmd/cover
|
|
|
|
- go get github.com/klauspost/asmfmt/cmd/asmfmt
|
|
|
|
script:
|
|
|
|
- test -z "$(asmfmt -l *.s)"
|
|
|
|
- go test -v -covermode=count -coverprofile=profile.cov
|
|
|
|
after_success:
|
|
|
|
- goveralls -coverprofile=profile.cov -service=travis-ci
|