We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcfa56a commit 0f167f3Copy full SHA for 0f167f3
1 file changed
.github/workflows/codeql-analysis.yml
@@ -1,4 +1,4 @@
1
-name: CodeQL Analysis
+name: "CodeQL Analysis"
2
3
on:
4
push:
@@ -24,12 +24,17 @@ jobs:
24
runs-on: ubuntu-latest
25
timeout-minutes: 15
26
27
+ strategy:
28
+ fail-fast: false
29
+ matrix:
30
+ language: [ 'python' ]
31
+
32
steps:
33
- uses: actions/checkout@v6
34
- name: Initialize CodeQL
35
uses: github/codeql-action/init@v3
36
with:
- languages: python
37
+ languages: ${{ matrix.language }}
38
- name: Autobuild
39
uses: github/codeql-action/autobuild@v3
40
- name: Perform CodeQL Analysis
0 commit comments