File: .travis.yml

package info (click to toggle)
golang-github-couchbase-ghistogram 0.0.0%2Bgit20170308.21.d910dd0-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: makefile: 2
file content (14 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go

go:
  - 1.4

before_install:
  - go get github.com/axw/gocov/gocov
  - go get github.com/mattn/goveralls
  - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi

script:
  - go get ./...
  - go test -v ./...
  - go test -coverprofile=coverage.out -covermode=count