Files
go-xmlsec/.travis.yml
2015-11-30 20:38:16 -05:00

20 lines
398 B
YAML

language: go
addons:
apt:
packages:
- libxml2-dev
- libxmlsec1-dev
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get code.google.com/p/go.tools/cmd/cover
script:
- go test -v -covermode=count -coverprofile=coverage.out ./...
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN
go:
- 1.5