We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61ae0f1 commit 44e7b76Copy full SHA for 44e7b76
.github/workflows/clang-tidy.yml
@@ -21,19 +21,19 @@ jobs:
21
run: |
22
wget https://apt.llvm.org/llvm.sh
23
chmod +x llvm.sh
24
- sudo ./llvm.sh 20
25
- sudo apt-get install clang-tidy-20
+ sudo ./llvm.sh 21
+ sudo apt-get install clang-tidy-21
26
27
- name: Verify clang-tidy configuration
28
29
- clang-tidy-20 --verify-config
+ clang-tidy-21 --verify-config
30
31
- name: Prepare CMake
32
33
cmake -S . -B cmake.output -G "Unix Makefiles" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DDISABLE_CPP03_SYNTAX_CHECK=ON
34
env:
35
- CXX: clang-20
+ CXX: clang-21
36
37
- name: Clang-Tidy
38
39
- run-clang-tidy-20 -q -j $(nproc) -p=cmake.output
+ run-clang-tidy-21 -q -j $(nproc) -p=cmake.output
0 commit comments