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