You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- language: go
- go:
- - 1.2
- - 1.3
- - 1.4
- - 1.5
- - tip
- go_import_path: gopkg.in/asn-ber.v1
- install:
- - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
- - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
- - go get code.google.com/p/go.tools/cmd/cover || go get golang.org/x/tools/cmd/cover
- - go build -v ./...
- script:
- - go test -v -cover ./...
|