github.com/kjzz/viper@v1.3.7/.travis.yml (about)

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