20 lines
No EOL
500 B
YAML
20 lines
No EOL
500 B
YAML
language: go
|
|
|
|
go:
|
|
- master
|
|
|
|
install:
|
|
# - go get -t -v ./...
|
|
- go get -t -v github.com/zyxar/image2ascii/ascii
|
|
- 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
|
|
|
|
script:
|
|
- go test ./...
|
|
- go test -v -race ./...
|
|
- go vet ./... |