aboutsummaryrefslogtreecommitdiff
path: root/build/scripts/build-test-lint.sh
blob: 4b18ca2f84e56f5ed6d771313682bf2c743d33b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /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/...

./scripts/find-lint.sh

echo "Testing..."
go test -v ./...