Add Travis config and a single dummy test

This commit is contained in:
tpalino 2016-05-12 11:33:58 -07:00
Родитель 6140985778
Коммит 5d95fbd6cd
2 изменённых файлов: 21 добавлений и 0 удалений

11
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,11 @@
language: go
go:
- 1.6.2
- 1.5.4
- 1.4.3
before_script:
- go vet ./...
install:
# Add Godeps dependencies to GOPATH and PATH
- export GOPATH="${TRAVIS_BUILD_DIR}/Godeps/_workspace:$GOPATH"
- export PATH="${TRAVIS_BUILD_DIR}/Godeps/_workspace/bin:$PATH"

10
main_test.go Normal file
Просмотреть файл

@ -0,0 +1,10 @@
package main
import (
"testing"
)
// This is just a dummy test function to have a base to start with for Travis
func Test_dummy(t *testing.T) {
t.Log("Dummy test passed")
}