We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db1dd31 commit e2c8838Copy full SHA for e2c8838
1 file changed
.github/workflows/programming_team_code_ci.yml
@@ -35,13 +35,18 @@ jobs:
35
runs-on: ubuntu-latest
36
steps:
37
- uses: actions/checkout@v4
38
- - name: Set up LLVM repository
+ - name: Install LLVM
39
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
+ wget https://apt.llvm.org/llvm.sh
+ chmod +x llvm.sh
+ sudo ./llvm.sh 22
43
+ - name: Verify
44
+ run: |
45
+ clang-22 --version
46
+ clang-format-22 --version
47
+ clang-tidy-22 --version
48
- name: Install dependencies
- run: sudo apt update && sudo apt install -y clang-format-22 cppcheck
49
+ run: sudo apt install -y cppcheck
50
- name: grep, clang-format, cppcheck
51
run: make --directory=tests/ grep_clangformat_cppcheck
52
0 commit comments