summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test-tidy.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/test-tidy.sh b/tests/test-tidy.sh
new file mode 100755
index 00000000..f1ee5fed
--- /dev/null
+++ b/tests/test-tidy.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+set -e
+
+if [ -z "$GITHUB_BASE_REF" ]
+then
+ echo "This script is only meant to be run in a GitHub Workflow"
+ exit 1
+fi
+
+CHANGED_FILES=$(git diff --name-only "$GITHUB_BASE_REF"...HEAD)
+
+for file in $CHANGED_FILES
+do
+ [ -e "$file" ] || continue
+ case "$file" in
+ src/libs/*|src/FreeRTOS/*) continue ;;
+ *.cpp|*.h)
+ echo "::group::$file"
+ clang-tidy-12 -p build "$file" || true
+ echo "::endgroup::"
+ esac
+done
+
+exit 0