cobra/.travis.yml

22 lines
521 B
YAML
Raw Normal View History

2013-09-24 12:39:05 -04:00
language: go
matrix:
include:
2017-07-30 00:20:54 -06:00
- go: 1.7.6
- go: 1.8.3
- 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
- diff -u <(echo -n) <(gofmt -d -s .)
- if [ -z $NOVET ]; then
diff -u <(echo -n) <(go tool vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
fi