File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments