github.com/intel-go/viper@v1.5.1-0.20191113170345-18a46e0e5e35/.travis.yml (about)

     1  go_import_path: github.com/spf13/viper
     2  
     3  language: go
     4  
     5  env:
     6    global:
     7      - GO111MODULE="on"
     8      - GOFLAGS="-mod=readonly"
     9  
    10  go:
    11    - 1.11.x
    12    - 1.12.x
    13    - 1.13.x
    14    - tip
    15  
    16  os:
    17    - linux
    18    - osx
    19  
    20  matrix:
    21    allow_failures:
    22      - go: tip
    23    fast_finish: true
    24  
    25  script:
    26    - go install ./...
    27    - diff -u <(echo -n) <(gofmt -d .)
    28    - go test -v ./...
    29  
    30  after_success:
    31    - go get -u -d github.com/spf13/hugo
    32    - cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd -