mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
24d8df664c
* Fix #897 and shuffle directory around * Update find-lint * goimports Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
17 lines
365 B
Bash
Executable File
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 ./...
|