You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/codeql.yml
+10-4
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ on:
26
26
27
27
jobs:
28
28
analyze:
29
-
name: Analyze
29
+
name: Analyze ${{ matrix.language }}
30
30
runs-on: ubuntu-latest
31
31
timeout-minutes: 360
32
32
permissions:
@@ -36,7 +36,12 @@ jobs:
36
36
packages: read
37
37
actions: read
38
38
contents: read
39
-
39
+
strategy:
40
+
fail-fast: false
41
+
matrix:
42
+
include:
43
+
- language: python
44
+
- language: actions
40
45
steps:
41
46
- name: Checkout repository
42
47
uses: actions/checkout@v4
@@ -52,7 +57,7 @@ jobs:
52
57
- name: Initialize CodeQL
53
58
uses: github/codeql-action/init@v3
54
59
with:
55
-
languages: python
60
+
languages: ${{ matrix.language }}
56
61
build-mode: none
57
62
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
0 commit comments