File: .travis.yml

package info (click to toggle)
golang-github-canonicalltd-raft-membership 0.0~git20180413.3846634-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 100 kB
  • sloc: makefile: 2
file content (16 lines) | stat: -rw-r--r-- 271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: go

before_install:
  - go get github.com/mattn/goveralls
  - go get github.com/golang/lint/golint
  - go get github.com/tsenart/deadcode

script:
  - go vet
  - golint
  - deadcode
  - $HOME/gopath/bin/goveralls -v -service=travis-ci

go:
  - "1.9"
  - "1.10"