Skip to content

Commit 53258d9

Browse files
committed
another fix
1 parent dfc3ce6 commit 53258d9

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/programming_team_code_ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,24 @@ jobs:
4646
run: |
4747
clang-22 --version
4848
clang-format-22 --version
49-
clang-tidy-22 --version
5049
- name: grep, clang-format, cppcheck
5150
run: make --directory=tests/ grep_clangformat_cppcheck
5251

5352
clangtidy:
5453
runs-on: ubuntu-latest
5554
steps:
5655
- uses: actions/checkout@v4
57-
- name: Set up LLVM repository
56+
- name: Install LLVM
5857
run: |
59-
sudo apt update
60-
sudo apt install -y wget software-properties-common
61-
wget -O - https://apt.llvm.org/llvm.sh | sudo bash
58+
wget https://apt.llvm.org/llvm.sh
59+
chmod +x llvm.sh
60+
sudo ./llvm.sh 22
6261
- name: Install dependencies
6362
run: sudo apt update && sudo apt install -y clang-tidy-22
63+
- name: Verify
64+
run: |
65+
clang-22 --version
66+
clang-tidy-22 --version
6467
- name: clang-tidy
6568
run: make --directory=tests/ clangtidy
6669

0 commit comments

Comments
 (0)