File: .travis.yml

package info (click to toggle)
golang-github-facebookgo-inject 0.0~git20180706.f23751c-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: makefile: 2
file content (19 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: go

go:
  - 1.6

before_install:
  - go get -v github.com/golang/lint/golint
  - go get -v golang.org/x/tools/cmd/cover

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

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