0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-07-27 07:18:46 +02:00
dendrite/build/scripts/build-test-lint.sh

17 lines
374 B
Bash
Raw Normal View History

#! /bin/bash
# Builds, tests and lints dendrite, and should be run before pushing commits
set -eu
# Check that all the packages can build.
# When `go build` is given multiple packages it won't output anything, and just
2019-05-21 22:56:55 +02:00
# checks that everything builds.
echo "Checking that it builds..."
2019-05-21 22:56:55 +02:00
go build ./cmd/...
./build/scripts/find-lint.sh
echo "Testing..."
go test -v ./...