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 cad2352 commit 7763020Copy full SHA for 7763020
1 file changed
.github/workflows/code_ql.yml
@@ -11,25 +11,33 @@ name: code_ql
11
- cron: '10 7 * * 1'
12
13
jobs:
14
- analyze_actions:
15
- name: Analyze Actions
+ analyze:
+ name: Analyze
16
runs-on: 'ubuntu-latest'
17
permissions:
18
actions: read
19
contents: read
20
security-events: write
21
22
+ strategy:
23
+ fail-fast: false
24
+ matrix:
25
+ language:
26
+ - actions
27
+ - rust
28
+
29
steps:
30
- name: Checkout repository
31
uses: actions/checkout@v5
32
33
- name: Initialize CodeQL
34
uses: github/codeql-action/init@v3
35
with:
- languages: 'actions'
36
+ languages: ${{ matrix.language }}
37
+ build-mode: none
38
39
- name: Perform CodeQL Analysis
40
uses: github/codeql-action/analyze@v3
41
- category: "/language:actions"
42
+ category: "/language:${{matrix.language}}"
43
...
0 commit comments