summaryrefslogtreecommitdiff
path: root/check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'check.sh')
-rwxr-xr-xcheck.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/check.sh b/check.sh
index 3f93b31..daa1be9 100755
--- a/check.sh
+++ b/check.sh
@@ -5,3 +5,9 @@ shopt -s globstar
mypy -p pypaste || exit $?
flake8 pypaste/**.py || exit $?
+
+if [[ ! -d build ]]; then
+ meson setup build || exit $?
+fi
+
+meson install --destdir=$(mktemp -d) -C build