...

Text file src/github.com/spf13/pflag/.travis.yml

Documentation: github.com/spf13/pflag

     1sudo: false
     2
     3language: go
     4
     5go:
     6  - 1.9.x
     7  - 1.10.x
     8  - 1.11.x
     9  - tip
    10
    11matrix:
    12  allow_failures:
    13    - go: tip
    14
    15install:
    16  - go get golang.org/x/lint/golint
    17  - export PATH=$GOPATH/bin:$PATH
    18  - go install ./...
    19
    20script:
    21  - verify/all.sh -v
    22  - go test ./...

View as plain text