Skip to content

Commit c4cea4b

Browse files
committed
CI: use clang-tidy-19
1 parent 807da43 commit c4cea4b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Install
15-
run: sudo apt-get install -y clang-tidy cmake ninja-build
15+
run: sudo apt-get install -y clang-tidy-19 cmake ninja-build
1616
- name: Checkout
1717
uses: actions/checkout@v4
1818
- name: Configure
19-
run: cmake -G Ninja -DCMAKE_CXX_CLANG_TIDY="clang-tidy-10;--warnings-as-errors=*" -DCMAKE_BUILD_TYPE=Debug .
19+
run: cmake -G Ninja -DCMAKE_CXX_CLANG_TIDY="clang-tidy-19;--warnings-as-errors=*" -DCMAKE_BUILD_TYPE=Debug .
2020
env:
21-
CC: clang-10
22-
CXX: clang++-10
21+
CC: clang-19
22+
CXX: clang++-19
2323
- name: Check
2424
run: cmake --build . -- -k 0

0 commit comments

Comments
 (0)