2013-09-24 12:39:05 -04:00
|
|
|
language: go
|
2016-08-20 00:09:46 -07:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
2018-10-19 21:44:36 +02:00
|
|
|
- go: 1.9.x
|
|
|
|
- go: 1.10.x
|
|
|
|
- go: 1.11.x
|
2016-08-20 00:09:46 -07:00
|
|
|
- go: tip
|
2016-05-09 11:37:22 +02:00
|
|
|
allow_failures:
|
|
|
|
- go: tip
|
|
|
|
|
2016-04-02 22:45:01 +02:00
|
|
|
before_install:
|
|
|
|
- mkdir -p bin
|
|
|
|
- curl -Lso bin/shellcheck https://github.com/caarlos0/shellcheck-docker/releases/download/v0.4.3/shellcheck
|
|
|
|
- chmod +x bin/shellcheck
|
2013-09-24 12:39:05 -04:00
|
|
|
script:
|
2016-04-02 22:45:01 +02:00
|
|
|
- PATH=$PATH:$PWD/bin go test -v ./...
|
2013-09-24 12:39:05 -04:00
|
|
|
- go build
|
2018-10-25 00:28:06 +02:00
|
|
|
- if [ "$TRAVIS_GO_VERSION" = "1.11.x" ]; then
|
|
|
|
diff -u <(echo -n) <(gofmt -d -s .);
|
|
|
|
fi
|
2016-08-20 00:09:46 -07:00
|
|
|
- if [ -z $NOVET ]; then
|
|
|
|
diff -u <(echo -n) <(go tool vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
|
|
|
|
fi
|