summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorBen Gadbois <[email protected]>2017-01-10 13:15:14 -0800
committerBen Gadbois <[email protected]>2017-01-10 15:39:00 -0800
commitc7c34266dab44ed222becc4a8eef982cd1707b2a (patch)
treeac0692b4200d998cc74ca3cea9e3ebfaca986058 /.travis.yml
parentd6a35381e9bcca86a3e643e88420cf7a13090ed2 (diff)
downloadcaddy-c7c34266dab44ed222becc4a8eef982cd1707b2a.tar.gz
caddy-c7c34266dab44ed222becc4a8eef982cd1707b2a.zip
Add misspell to travis build
Replace test text with real words so misspell doesn't throw errors
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index f7a25e6f3..badf3642c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,10 +21,12 @@ install:
- go get -t ./...
- go get github.com/golang/lint/golint
- go get github.com/gordonklaus/ineffassign
+ - go get github.com/client9/misspell/cmd/misspell
script:
- diff <(echo -n) <(gofmt -s -d .)
- ineffassign .
+ - misspell -error .
- go vet ./...
- go test -race ./...