bash.im-telegram-bot/.travis.yml

16 lines
351 B
YAML
Raw Normal View History

2019-06-09 20:38:26 +03:00
go_import_path: github.com/Neur0toxine/bash.im-telegram-bot
2019-06-09 20:16:14 +03:00
dist: xenial
language: go
2019-06-09 20:34:26 +03:00
cache:
directories:
- $HOME/.cache/go-build
2019-06-09 20:38:26 +03:00
- $HOME/gopath/pkg
2019-06-09 20:16:14 +03:00
go:
- "1.12"
script:
2019-06-09 21:16:30 +03:00
- "go test ./src"
- "cd ./src && go build -o ./../build/bash_im_bot"
2019-06-09 20:38:26 +03:00
env:
- GO111MODULE=on
2019-06-09 21:16:30 +03:00
install:
- export GOPATH="$GOPATH:${TRAVIS_BUILD_DIR}"