Updated travis file

This commit is contained in:
Eduard Urbach 2018-04-26 01:59:49 +02:00
parent d4033592c1
commit 021794052b

View File

@ -39,6 +39,7 @@ before_script:
# script always run to completion (set +e). All of these code checks are must haves
# in a modern Go project.
script:
- make all
- test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt
# - go test -v . # Run all the tests
# - go test -v -race ./... # Run all the tests with the race detector enabled