Skip to content

Commit e2c8838

Browse files
committed
trying this
1 parent db1dd31 commit e2c8838

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/programming_team_code_ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,18 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v4
38-
- name: Set up LLVM repository
38+
- name: Install LLVM
3939
run: |
40-
sudo apt update
41-
sudo apt install -y wget software-properties-common
42-
wget -O - https://apt.llvm.org/llvm.sh | sudo bash
40+
wget https://apt.llvm.org/llvm.sh
41+
chmod +x llvm.sh
42+
sudo ./llvm.sh 22
43+
- name: Verify
44+
run: |
45+
clang-22 --version
46+
clang-format-22 --version
47+
clang-tidy-22 --version
4348
- name: Install dependencies
44-
run: sudo apt update && sudo apt install -y clang-format-22 cppcheck
49+
run: sudo apt install -y cppcheck
4550
- name: grep, clang-format, cppcheck
4651
run: make --directory=tests/ grep_clangformat_cppcheck
4752

0 commit comments

Comments
 (0)