github.com/ccpgames/viper@v1.1.1/.travis.yml (about)

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