0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2025-02-17 23:45:43 -05:00

travis: enforce go fmt and go vet

This commit is contained in:
Will Norris 2019-03-22 08:09:51 +00:00
parent 4a6b8653b6
commit c661aad66b

View file

@ -14,3 +14,8 @@ cache:
env:
global:
- GO111MODULE=on
script:
- diff -u <(echo -n) <(gofmt -d -s .)
- go vet ./...
- go test -v ./...