2017-12-16 18:29:18 +00:00
|
|
|
language: go
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
go:
|
|
|
|
- master
|
|
|
|
|
2017-12-16 19:14:02 +00:00
|
|
|
go_import_path:
|
|
|
|
- src/github.com/metonimie/simpleFTP
|
|
|
|
|
2017-12-16 18:55:44 +00:00
|
|
|
install:
|
2017-12-16 19:03:21 +00:00
|
|
|
# - go get -t -v ./...
|
|
|
|
- go get -t -v github.com/fsnotify/fsnotify
|
|
|
|
- go get -t -v github.com/spf13/viper
|
|
|
|
- go get -t -v github.com/hashicorp/hcl
|
|
|
|
- go get -t -v github.com/magiconair/properties
|
|
|
|
- go get -t -v github.com/mitchellh/mapstructure
|
|
|
|
- go get -t -v github.com/pelletier/go-toml
|
|
|
|
- go get -t -v github.com/spf13/afero
|
2017-12-16 18:55:44 +00:00
|
|
|
|
2017-12-16 18:29:18 +00:00
|
|
|
script:
|
2017-12-16 19:14:02 +00:00
|
|
|
- go test ./...
|
|
|
|
- go test -v -race ./...
|
|
|
|
- go vet ./...
|