summaryrefslogtreecommitdiff
path: root/check.sh
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-09 19:58:13 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-09 19:58:13 -0400
commit9fae2a16f2c11d8bdd886e9798d3db4caad9143f (patch)
tree5e699db6cf7e082b731b232e7663ba36845d3b5d /check.sh
parent6980118d4a288f9e7f8be06c154dd5b617e2c78d (diff)
downloadpypaste-9fae2a16f2c11d8bdd886e9798d3db4caad9143f.tar.gz
run meson in check.sh
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