light/.drone.yml
light7734 bfaef60af4
Some checks reported errors
continuous-integration/drone/push Build encountered an error
ci: add .drone.yml
2025-07-11 13:02:30 +03:30

25 lines
503 B
YAML

kind: pipeline
type: docker
name: clang format
trigger:
branch:
- main
steps:
- name: clang format
image: clang_format:latest
commands:
- |
set -e
clang-format --version
find ./modules -name '*.?pp' | while read -r file; do
echo "Checking format for $file"
if ! clang-format --dry-run --Werror "$file"; then
echo "❌ Formatting issue detected in $file"
exit 1
fi
done
echo "✅ All files are properly formatted"