2017-10-10 12:02:39 +02:00
|
|
|
#! /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.
|
2019-05-22 11:44:25 +02:00
|
|
|
echo "Checking that it builds..."
|
2019-05-21 22:56:55 +02:00
|
|
|
go build ./cmd/...
|
2017-10-10 12:02:39 +02:00
|
|
|
|
2020-06-20 22:28:30 +02:00
|
|
|
./build/scripts/find-lint.sh
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
echo "Testing..."
|
2022-08-05 10:19:33 +02:00
|
|
|
go test --race -v ./...
|