You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
258 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 -v
- go tool cover -html=cover.out -o coverage.html || true