Codebase list golang-github-klauspost-pgzip / lintian-fixes/main .travis.yml
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

.travis.yml @lintian-fixes/mainraw · history · blame

language: go

os:
  - linux
  - osx

go:
  - 1.13.x
  - 1.14.x
  - 1.15.x
  - master

env:
  - GO111MODULE=off

script:
  - diff <(gofmt -d .) <(printf "")
  - go test -v -cpu=1,2,4 .
  - go test -v -cpu=2 -race -short .

matrix:
  allow_failures:
    - go: 'master'
  fast_finish: true