Skip to content

Commit

Permalink
Add Travis CI Badge and fix .travis.yml
Browse files Browse the repository at this point in the history
It's unfortunately pretty hard to deal gofmt and golint since they don't
give a nonzero exit code when they find issues. This way will swallow
the output, but it's preferable to making the setup more complicated
than it needs to be.
  • Loading branch information
packrat386 committed Dec 5, 2016
1 parent 8fb9678 commit 144700b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ go:
- tip

before_script:
- go get github.com/GeertJohan/fgt
- go get github.com/golang/lint

script:
- fgt gomft -l .
- fgt golint ./..
- test -z $(gomft -l .)
- test -z $(golint ./...)
- go vet ./...
- go test -v ./...

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Scout
[![Build Status](https://travis-ci.org/enova/scout.svg?branch=master)](https://travis-ci.org/enova/scout)

Scout is a daemon for listening to a set of SNS topics and enqueuing anything it
finds into sidekiq jobs. It's meant to extract processing of SQS from the rails
Expand Down

0 comments on commit 144700b

Please # to comment.