github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/klauspost/compress/.travis.yml (about)

     1  language: go
     2  
     3  sudo: false
     4  
     5  os:
     6    - linux
     7    - osx
     8  
     9  go:
    10    - 1.3
    11    - 1.4
    12    - 1.5
    13    - 1.6
    14    - tip
    15  
    16  install:
    17   - go get -t ./...
    18   - go get -u golang.org/x/tools/cmd/goimports
    19  
    20  script:
    21   - diff <(goimports -d .) <(printf "")
    22   - go test -v -cpu=2 ./...
    23   - go test -cpu=2 -tags=noasm ./...
    24   - go test -cpu=1,2,4 -short -race ./...
    25   - go test -cpu=2,4 -short -race -tags=noasm ./...