-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from adamo57/master
Create .travis.yml
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
language: go | ||
|
||
go: | ||
- 1.8 | ||
- 1.9 | ||
- tip | ||
|
||
# Skip the install step. Don't `go get` dependencies. Only build with the | ||
# code in vendor/ | ||
install: true | ||
|
||
matrix: | ||
# It's ok if our code fails on unstable development versions of Go. | ||
allow_failures: | ||
- go: tip | ||
# Don't wait for tip tests to finish. Mark the test run green if the | ||
# tests pass on the stable versions of Go. | ||
fast_finish: true | ||
|
||
# Don't email me the results of the test runs. | ||
notifications: | ||
email: true | ||
|
||
# Anything in before_script: that returns a nonzero exit code will | ||
# flunk the build and immediately stop. It's sorta like having | ||
# set -e enabled in bash. | ||
before_script: | ||
- GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) # All the .go files, excluding vendor/ | ||
- PKGS=$(go list ./... | grep -v /vendor/) # All the import paths, excluding vendor/ | ||
- go get github.com/golang/lint/golint # Linter | ||
|
||
# script always run to completion (set +e). All of these code checks are must haves | ||
# in a modern Go project. | ||
script: | ||
- test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt | ||
- go test ./... -coverprofile=coverage.txt -covermode=atomic # Run all the tests with the race detector enabled | ||
- go vet -v ./... # go vet is the official Go static analyzer | ||
- golint -set_exit_status $PKGS # one last linter |