change(CI): run clang-tidy quietly and only for files in compilation database

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-04-02 02:34:27 +05:00
parent d2eae3b072
commit a79cb5a9fc
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF

View file

@ -49,5 +49,5 @@ jobs:
BASE_REF: ${{ github.event.pull_request.base.sha || github.event.merge_group.base_sha }}
run: |
nix develop --command bash -c '
clang-tidy -verify-config && git diff -U0 --no-color "$BASE_REF" | clang-tidy-diff.py -p1
clang-tidy -verify-config && git diff -U0 --no-color "$BASE_REF" | clang-tidy-diff.py -p1 -quiet -only-check-in-db
'