aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/klauspost/pgzip/.travis.yml
blob: acfec4bb09d6e91faeaec879191fe3ef5778a85a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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