go-dmr/.travis.yml
Wijnand Modderman-Lenstra 500a97e3f3 Updated .travis.yml
2015-12-18 16:02:09 +01:00

14 lines
254 B
YAML

language: go
go:
# Debian/Ubuntu ships with older Go
- 1.3.3
# Recent stable Go
- 1.5.2
install:
- go get -d -v ./...
script:
- go test -v ./...
- go test -coverprofile=cover.out && go tool cover -html=cover.out -o coverage.html || true