mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-08 23:43:11 -06:00
Call 'go build' from the pre-commit hook to check that everything builds
This commit is contained in:
parent
a7acfa5546
commit
93279584fd
|
|
@ -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 build. 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/...
|
||||
|
|
|
|||
Loading…
Reference in a new issue