dendrite/scripts/build-test-lint.sh

20 lines
408 B
Bash
Raw Normal View History

#! /bin/bash
# Builds, tests and lints dendrite, and should be run before pushing commits
set -eu
echo "Checking that it builds"
gb build
# Check that all the packages can build.
# When `go build` is given multiple packages it won't output anything, and just
2019-05-21 21:56:55 +01:00
# checks that everything builds.
echo "Double checking it builds..."
2019-05-21 21:56:55 +01:00
go build ./cmd/...
./scripts/find-lint.sh
echo "Testing..."
2019-05-21 21:56:55 +01:00
go test ./...