We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b48ad8 commit d19179eCopy full SHA for d19179e
1 file changed
.github/workflows/lint.yml
@@ -26,8 +26,8 @@ jobs:
26
sudo apt-get install -y \
27
build-essential \
28
cmake \
29
- clang-format \
30
- clang-tidy \
+ clang-format-18 \
+ clang-tidy-18 \
31
wget
32
33
- name: Lint and format 💅
@@ -38,12 +38,11 @@ jobs:
38
with:
39
file-annotations: true
40
files-changed-only: false
41
- ignore: "build|.github|cmake|fuzzing|.vscode|.idea"
+ ignore: "build|.github|cmake|fuzzing|.vscode|.idea|include/view_templates.h"
42
step-summary: true
43
style: file # uses .clang-format
44
thread-comments: true
45
tidy-checks: "-*" # disable clang-tidy, only use clang-format
46
- format-review-errors: false # ignore parsing errors, only check formatting
47
48
- name: Fail if errors
49
if: ${{ steps.linter.outputs['checks-failed'] > 0 }}
0 commit comments