File: .travis.yml

package info (click to toggle)
golang-github-facebookgo-subset 0.0~git20150612.0.8dac2c3-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 84 kB
  • sloc: makefile: 2
file content (24 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: go

go:
  - 1.2
  - 1.3

matrix:
  fast_finish: true

before_install:
  - go get -v code.google.com/p/go.tools/cmd/vet
  - go get -v github.com/golang/lint/golint
  - go get -v code.google.com/p/go.tools/cmd/cover

install:
  - go install -race -v std
  - go get -race -t -v ./...
  - go install -race -v ./...

script:
  - go vet ./...
  - $HOME/gopath/bin/golint .
  - go test -cpu=2 -race -v ./...
  - go test -cpu=2 -covermode=atomic ./...