mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-15 00:20:37 +03:00
This commit adds Travis-CI testing, which allows free and easy continuous integration for pull requests and new commits. It also adds a `make deps` target in the Makefile for easily adding the dependencies. It can be enabled here: http://docs.travis-ci.com/user/getting-started/#Step-one%3A-Sign-in Just follow instructions 1-2, three is already done. Thanks.
15 lines
120 B
YAML
15 lines
120 B
YAML
language: go
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
install:
|
|
- make deps
|
|
|
|
default:
|
|
- make test
|
|
|
|
go:
|
|
- 1.3
|
|
- 1.4
|
|
- tip |