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

15 lines
266 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 20:27:15 +03:00
- "make test"
2019-06-09 20:38:26 +03:00
- "make build"
env:
- GO111MODULE=on
install: true