mirror of https://github.com/tidwall/tile38.git
23 lines
436 B
YAML
23 lines
436 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.x
|
||
|
- 1.3.x
|
||
|
- 1.4.x
|
||
|
- 1.5.x
|
||
|
- 1.6.x
|
||
|
- 1.7.x
|
||
|
- 1.8.x
|
||
|
- 1.9.x
|
||
|
- 1.10.x
|
||
|
- 1.11.x
|
||
|
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
|