Fix linting CI.

This commit is contained in:
2026-02-14 17:29:42 -05:00
parent a2f849ec72
commit 9397e3117b

View File

@@ -39,7 +39,7 @@ jobs:
# Check the entire repo for source files to tidy # Check the entire repo for source files to tidy
files-changed-only: false files-changed-only: false
# Ignore qtk build and external assimp directories # Ignore qtk build and external assimp directories
ignore: '.github|build|extern/assimp/assimp' ignore: '.github|build|extern'
# Point to compile_commands.json produced by build # Point to compile_commands.json produced by build
database: 'build' database: 'build'
# Use thread comments as feedback # Use thread comments as feedback
@@ -61,8 +61,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: clang-format Check - uses: cpp-linter/cpp-linter-action@v2
uses: jidicula/clang-format-action@v4.16.0
with: with:
clang-format-version: '18' version: '18'
check-path: ${{ matrix.path }} style: 'file'
tidy-checks: ''
files-changed-only: false
ignore: '.github|build|extern'
extensions: 'cpp,h'
files: ${{ matrix.path }}