github.com/fzambia/viper-lite@v0.0.0-20171108064948-d5a31e6aa18b/.travis.yml (about)

     1  go_import_path: github.com/FZambia/viper-lite
     2  
     3  language: go
     4  go:
     5    - 1.7.5
     6    - 1.8
     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  sudo: false