summaryrefslogtreecommitdiff
path: root/check.sh
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-09 19:33:10 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-09 19:33:10 -0400
commit6980118d4a288f9e7f8be06c154dd5b617e2c78d (patch)
treedd41ad3df10b9ee669cda81bd5f40576d2ce030a /check.sh
parente6db914af092e4ddcfd865e8d23852579755d224 (diff)
downloadpypaste-6980118d4a288f9e7f8be06c154dd5b617e2c78d.tar.gz
create check.sh script
Diffstat (limited to 'check.sh')
-rwxr-xr-xcheck.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/check.sh b/check.sh
new file mode 100755
index 0000000..3f93b31
--- /dev/null
+++ b/check.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+shopt -s globstar
+
+mypy -p pypaste || exit $?
+
+flake8 pypaste/**.py || exit $?