Skip to content

Commit 78f0f7c

Browse files
authored
clang-tidy.yml: updated to Clang 20 (#388)
1 parent 09a8163 commit 78f0f7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/clang-tidy.yml

+5-5
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 19
25-
sudo apt-get install clang-tidy-19
24+
sudo ./llvm.sh 20
25+
sudo apt-get install clang-tidy-20
2626
2727
- name: Verify clang-tidy configuration
2828
run: |
29-
clang-tidy-19 --verify-config
29+
clang-tidy-20 --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-19
35+
CXX: clang-20
3636

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

0 commit comments

Comments
 (0)