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