mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-12 23:01:40 +00:00
02fe38e1f7
* Per-user-per-device sync streams * Tweaks * Tweaks * Pass full device into CompleteSync * Set user IDs and device IDs properly in tests * Add new test, fix TestNewEventAndWasPreviouslyJoinedToRoom * nolint a function that is not used yet * Add test for waking up single device * Hopefully unstick test * Try to ensure that TestCorrectStreamWakeup doesn't block forever * Update tests
17 lines
368 B
Bash
Executable File
17 lines
368 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 -v ./...
|