File: .travis.yml

package info (click to toggle)
golang-github-soheilhy-cmux 0.1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 168 kB
  • sloc: makefile: 3
file content (29 lines) | stat: -rw-r--r-- 715 bytes parent folder | download
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
26
27
28
29
language: go

go:
  - 1.6
  - 1.7
  - 1.8
  - tip

matrix:
  allow_failures:
    - go: tip

gobuild_args: -race

before_install:
  - if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go get -u github.com/kisielk/errcheck; fi
  - if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go get -u golang.org/x/lint/golint; fi

before_script:
  - '! gofmt -s -l . | read'
  - echo $TRAVIS_GO_VERSION
  - if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then golint ./...; fi
  - if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then errcheck ./...; fi
  - if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go tool vet .; fi
  - if [[ $TRAVIS_GO_VERSION == 1.6* ]]; then go tool vet --shadow .; fi

script:
  - go test -bench . -v ./...
  - go test -race -bench . -v ./...