Skip to content

Commit 3b1bc92

Browse files
committed
again for consistency
1 parent 0d49b27 commit 3b1bc92

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/programming_team_code_ci.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,17 @@ jobs:
142142
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
143143
steps:
144144
- uses: actions/checkout@v4
145-
- name: Set up LLVM repository
145+
- name: Install LLVM
146146
run: |
147-
sudo apt update
148-
sudo apt install -y wget software-properties-common
149-
wget -O - https://apt.llvm.org/llvm.sh | sudo bash
147+
wget https://apt.llvm.org/llvm.sh
148+
chmod +x llvm.sh
149+
sudo ./llvm.sh 22
150150
- name: Install dependencies
151-
run: sudo apt update && sudo apt install -y clang-format-22
151+
run: sudo apt install -y clang-format-22 cppcheck
152+
- name: Verify
153+
run: |
154+
clang-22 --version
155+
clang-format-22 --version
152156
- name: Combine includes and force push to main branch
153157
run: |
154158
git config --local user.name github-actions

0 commit comments

Comments
 (0)