chore: clang-tidy check header file (#455)

This commit is contained in:
egolearner 2026-06-10 13:54:01 +08:00 committed by GitHub
parent 4679a8f39d
commit 2a9837e33d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,6 @@ Checks: >
modernize-use-nullptr,
modernize-use-override,
WarningsAsErrors: "*"
HeaderFilterRegex: "^(src|tests|tools)/(?!db/sqlengine/antlr/gen/).*"
HeaderFilterRegex: "^(src|tests|tools)/(?!db/sqlengine/antlr/gen/|db/index/column/fts_column/gen/|include/zvec/ailego/encoding/json/mod_json\\.h).*"
FormatStyle: none
SystemHeaders: false

View File

@ -27,9 +27,13 @@ jobs:
**/*.cc
**/*.cpp
**/*.cxx
**/*.h
**/*.hpp
files_ignore: |
thirdparty/**
build/**
src/db/sqlengine/antlr/gen/**
src/db/index/column/fts_column/gen/**
- name: No C/C++ files changed - skip
if: steps.changed_files.outputs.any_changed != 'true'