vendor/github.com/spf13/viper/.travis.yml
changeset 251 1c52a0eeb952
parent 242 2a9ec03fe5a1
equal deleted inserted replaced
250:c040f992052f 251:1c52a0eeb952
     1 go_import_path: github.com/spf13/viper
     1 go_import_path: github.com/spf13/viper
     2 
     2 
     3 language: go
     3 language: go
       
     4 
       
     5 env:
       
     6   global:
       
     7     - GO111MODULE="on"
       
     8     - GOFLAGS="-mod=readonly"
       
     9 
     4 go:
    10 go:
     5   - 1.10.x
       
     6   - 1.11.x
    11   - 1.11.x
       
    12   - 1.12.x
       
    13   - 1.13.x
     7   - tip
    14   - tip
     8 
    15 
     9 os:
    16 os:
    10   - linux
    17   - linux
    11   - osx
    18   - osx
    21   - go test -v ./...
    28   - go test -v ./...
    22 
    29 
    23 after_success:
    30 after_success:
    24   - go get -u -d github.com/spf13/hugo
    31   - go get -u -d github.com/spf13/hugo
    25   - cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd -
    32   - cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd -
    26 
       
    27 sudo: false