Skip to content

Commit 44e7b76

Browse files
committed
clang-tidy.yml: updated to Clang 21
1 parent 61ae0f1 commit 44e7b76

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/clang-tidy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121
run: |
2222
wget https://apt.llvm.org/llvm.sh
2323
chmod +x llvm.sh
24-
sudo ./llvm.sh 20
25-
sudo apt-get install clang-tidy-20
24+
sudo ./llvm.sh 21
25+
sudo apt-get install clang-tidy-21
2626
2727
- name: Verify clang-tidy configuration
2828
run: |
29-
clang-tidy-20 --verify-config
29+
clang-tidy-21 --verify-config
3030
3131
- name: Prepare CMake
3232
run: |
3333
cmake -S . -B cmake.output -G "Unix Makefiles" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DDISABLE_CPP03_SYNTAX_CHECK=ON
3434
env:
35-
CXX: clang-20
35+
CXX: clang-21
3636

3737
- name: Clang-Tidy
3838
run: |
39-
run-clang-tidy-20 -q -j $(nproc) -p=cmake.output
39+
run-clang-tidy-21 -q -j $(nproc) -p=cmake.output

0 commit comments

Comments
 (0)