dendrite/scripts/build-test-lint.sh
Brendan Abolivier c59880d6db Change log line
2019-05-22 10:28:11 +01:00

17 lines
365 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/...
./scripts/find-lint.sh
echo "Testing..."
go test ./...