go-libvirt-plain/.travis.yml

14 lines
236 B
YAML
Raw Normal View History

2016-05-20 03:05:37 +03:00
language: go
go:
2016-08-31 23:58:56 +03:00
- 1.7
2016-05-20 03:05:37 +03:00
before_install:
- go get github.com/golang/lint/golint
before_script:
- go get -d ./...
script:
- ./scripts/licensecheck.sh
- go build ./...
- ./scripts/golint.sh
- go vet ./...
- go test -v ./...