File: .travis.yml

package info (click to toggle)
golang-github-davecgh-go-xdr 0.0~git20161123.e6a2ba0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 360 kB
  • sloc: sh: 19; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: go
go:
  - 1.6.3
  - 1.7.3
sudo: false
install:
  - go get -d -t -v ./...
  - go get -v golang.org/x/tools/cover
  - go get -v github.com/bradfitz/goimports
  - go get -v github.com/golang/lint/golint
script:
  - export PATH=$PATH:$HOME/gopath/bin
  - ./goclean.sh
after_success:
  - go get -v github.com/mattn/goveralls
  - goveralls -coverprofile=xdr2/profile.cov -service=travis-ci