mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-15 22:31:07 +01:00
14 lines
305 B
Bash
14 lines
305 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
# Check that the servers build
|
||
|
gb build github.com/matrix-org/dendrite/roomserver/roomserver
|
||
|
gb build github.com/matrix-org/dendrite/roomserver/roomserver-integration-tests
|
||
|
|
||
|
# Run the pre commit hooks
|
||
|
./hooks/pre-commit
|
||
|
|
||
|
# Run the integration tests
|
||
|
bin/roomserver-integration-tests
|