aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/klauspost/cpuid/.travis.yml
blob: 630192d597b2e5931f3c636f06667bd7093dcc8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: go

sudo: false

os:
  - linux
  - osx  
go:
  - 1.8.x
  - 1.9.x
  - 1.10.x
  - master

script: 
 - go vet ./...
 - go test -v ./...
 - go test -race ./...
 - diff <(gofmt -d .) <("") 

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