mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
20 lines
408 B
Bash
Executable File
20 lines
408 B
Bash
Executable File
#! /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
|
|
# checks that everything builds.
|
|
echo "Double checking it builds..."
|
|
go build ./cmd/...
|
|
|
|
./scripts/find-lint.sh
|
|
|
|
echo "Testing..."
|
|
go test ./...
|