We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8110412 commit 335501eCopy full SHA for 335501e
1 file changed
.github/workflows/codeql.yml
@@ -20,11 +20,18 @@ jobs:
20
- name: Checkout repository
21
uses: actions/checkout@v6
22
23
- - name: Setup LLVM 22
+ - name: Setup LLVM
24
+ if: matrix.language == 'cpp'
25
uses: ZhongRuoyu/setup-llvm@v0
26
with:
27
llvm-version: 22
28
29
+ - name: Setup Rust
30
+ if: matrix.language == 'rust'
31
+ uses: dtolnay/rust-toolchain@master
32
+ with:
33
+ toolchain: 1.94.0
34
+
35
- name: Initialize CodeQL
36
uses: github/codeql-action/init@v4
37
@@ -37,12 +44,6 @@ jobs:
44
if: matrix.language != 'rust'
38
45
uses: github/codeql-action/autobuild@v4
39
46
40
- - name: Set up Rust
41
- if: matrix.language == 'rust'
42
- uses: dtolnay/rust-toolchain@master
43
- with:
- toolchain: 1.94.0
-
47
- name: Build Rust project
48
if: matrix.language == 'rust'
49
run: cargo build --verbose
0 commit comments