We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56bd2f commit 94c1544Copy full SHA for 94c1544
1 file changed
.github/actions/setup/action.yml
@@ -1,14 +1,14 @@
1
-name: Install LLVM
+name: 'Install LLVM'
2
runs:
3
using: "composite"
4
steps:
5
- - uses: actions/checkout@v4
+ - name: Install LLVM
6
run: |
7
- wget https://apt.llvm.org/llvm.sh
8
- chmod +x llvm.sh
9
- sudo ./llvm.sh 22
10
- sudo apt-get update
11
- sudo apt-get install -y clang-format-22 clang-tidy-22
12
- clang-22 --version
13
- clang-format-22 --version
14
- clang-tidy-22 --version
+ wget https://apt.llvm.org/llvm.sh
+ chmod +x llvm.sh
+ sudo ./llvm.sh 22
+ sudo apt-get update
+ sudo apt-get install -y clang-format-22 clang-tidy-22
+ clang-22 --version
+ clang-format-22 --version
+ clang-tidy-22 --version
0 commit comments