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 5380570 commit c648649Copy full SHA for c648649
.github/workflows/ci-auto-format-and-commit.yml
@@ -28,9 +28,12 @@ jobs:
28
29
- name: Install formatter
30
shell: bash
31
+ # [TODO] It seems like ubuntu-latest (24.04) in github actions does not
32
+ # have llvm-20 in the apt repository yet. I will change the
33
+ # version to 20 when it is available.
34
run: |
35
wget https://apt.llvm.org/llvm.sh
- sudo chmod +x ./llvm.sh && sudo ./llvm.sh 19
36
+ sudo chmod +x ./llvm.sh && sudo ./llvm.sh 19 && rm ./llvm.sh
37
sudo apt-get update
38
sudo apt-get install clang-format-19
39
sudo ln -sf $(which clang-format-19) /usr/bin/clang-format
0 commit comments