Compare commits

..

1 Commits

Author SHA1 Message Date
3b22d98e2f Fix workflow
Some checks failed
CI / Linux (debian) (pull_request) Has been cancelled
CI / Linux (fedora) (pull_request) Has been cancelled
CI / Linux (ubuntu) (pull_request) Has been cancelled
CI / Check spelling (pull_request) Has been cancelled
CI / Linux (arch) (pull_request) Has been cancelled
CI / Check coding style (pull_request) Successful in 31s
2025-06-20 14:26:06 +02:00

View File

@@ -52,7 +52,7 @@ jobs:
# Find all source files you care about
INCLUDE_REGEX='^.*\.((((c|C)(c|pp|xx|\+\+)?$)|((h|H)h?(pp|xx|\+\+)?$))|(ino|pde|proto|cu))$'
CHECK_PATH='src'
files=$(find "$CHECK_PATH" -name .git -prune -o -regextype posix-egrep -regex "$INCLUDE_REGEX" -print
files=$(find "$CHECK_PATH" -name .git -prune -o -regextype posix-egrep -regex "$INCLUDE_REGEX" -print)
# Run clang-format in dry-run mode and collect any improperly formatted files
failed=0