1
0
Fork 0

Adds misspell validation

This commit is contained in:
Ed Robinson 2016-11-16 09:12:49 +00:00
parent 3708fa864b
commit 7af6bc093d
No known key found for this signature in database
GPG key ID: EC501FCA6421CCF0
2 changed files with 33 additions and 1 deletions

View file

@ -3,7 +3,8 @@ FROM golang:1.7
RUN go get github.com/Masterminds/glide \
&& go get github.com/jteeuwen/go-bindata/... \
&& go get github.com/golang/lint/golint \
&& go get github.com/kisielk/errcheck
&& go get github.com/kisielk/errcheck \
&& go get github.com/client9/misspell/cmd/misspell
# Which docker version to test on
ARG DOCKER_VERSION=1.10.1