0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-30 23:09:01 +02:00

Call 'go build' from the pre-commit hook to check that everything builds (#116)

This commit is contained in:
Mark Haines 2017-05-23 09:12:59 +01:00 committed by Kegsay
parent a7acfa5546
commit 309300a744

View file

@ -7,3 +7,9 @@ go fmt ./src/...
go tool vet --all --shadow ./src
gocyclo -over 12 src/
gb test
# Check that all the packages can build.
# When `go build` is given multiple packages it won't output anything, and just
# checks that everything builds. This seems to do a better job of handling
# missing imports than `gb build` does.
GOPATH=$(pwd):$(pwd)/vendor go build github.com/matrix-org/dendrite/cmd/...