File: .travis.yml

package info (click to toggle)
golang-github-twinj-uuid 0.10.0%2Bgit20160909.96.7bbe408-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 236 kB
  • sloc: makefile: 3
file content (25 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: go
go:
    - 1.6
    - 1.5
    - 1.4
    - 1.3
    - 1.2
    - tip
os:
    - linux
    - osx
sudo: false
before_script:
    - gofmt -s -l -e .
    - go vet ./...
before_install:
    - go get -t -v ./...
    - go get github.com/mattn/goveralls
    - go get golang.org/x/tools/cmd/cover
script:
    - go test -v -short -covermode=count -coverprofile=coverage.out
    - go test -v -short -race
    - $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
notifications:
    email: true