We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257db7d commit a020a46Copy full SHA for a020a46
.github/workflows/code_analysis.yml
@@ -37,7 +37,11 @@ jobs:
37
- name: Determine merge base
38
run: echo "MERGE_BASE=$(git merge-base ${{ github.event.pull_request.base.sha }} HEAD)" >> $GITHUB_ENV
39
- name: install clang-format
40
- run: sudo apt-get install -y clang-format
+ run: |
41
+ wget https://apt.llvm.org/llvm.sh
42
+ chmod u+x ./llvm.sh
43
+ sudo ./llvm.sh 20
44
+ sudo apt-get install -y clang-format-20
45
- name: run clang-format script
46
run: .ci/format_script.sh
47
0 commit comments