1
0
mirror of https://github.com/restic/restic.git synced 2024-07-03 08:50:53 +02:00
restic/vendor/github.com/pkg/xattr/.travis.yml
Alexander Neumann bff635bc5f Update dependencies, enable pruning for vendor/
So, `dep` got an nice new feature to remove tests and non-go files from
`vendor/`, and this brings the size of the vendor directory from ~300MiB
down to ~20MiB. We don that now.
2018-08-01 21:32:15 +02:00

24 lines
357 B
YAML

language: go
sudo: false
go:
- "1.8.x"
- "1.9.x"
- "1.10"
os:
- linux
- osx
install:
- go version
- export GOBIN="$GOPATH/bin"
- export PATH="$PATH:$GOBIN"
- go get golang.org/x/sys/unix
- go get golang.org/x/tools/cmd/goimports
- go build
script:
- ./.travis.sh
- diff <(GOPATH="$PWD:$PWD/vendor" goimports -d .) <(printf "")