mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 15:08:59 +01:00
61e0482fef
Signed-off-by: Ashley Nelson <amn@fantashley.com>
16 lines
374 B
Bash
Executable file
16 lines
374 B
Bash
Executable file
#! /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
|
|
# checks that everything builds.
|
|
echo "Checking that it builds..."
|
|
go build ./cmd/...
|
|
|
|
./build/scripts/find-lint.sh
|
|
|
|
echo "Testing..."
|
|
go test -v ./...
|