mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 01:34:06 +00:00
bff635bc5f
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.
17 lines
363 B
YAML
17 lines
363 B
YAML
sudo: false
|
|
language: go
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
|
|
script:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/smartystreets/goconvey
|
|
- mkdir -p $HOME/gopath/src/gopkg.in
|
|
- ln -s $HOME/gopath/src/github.com/go-ini/ini $HOME/gopath/src/gopkg.in/ini.v1
|
|
- cd $HOME/gopath/src/gopkg.in/ini.v1
|
|
- go test -v -cover -race
|