Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewrankin committed Aug 12, 2017
1 parent f47f49d commit c488f89
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
help:
@echo "You can perform the following:"
@echo ""
@echo " check Format, lint, vet, and test Go code"

# Format, lint, vet, and test the Go code
check:
@echo 'Formatting, linting, vetting, and testing Go code'
go fmt ./...
golint ./...
go vet ./...
go test ./...

0 comments on commit c488f89

Please sign in to comment.