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-3Lines changed: 10 additions & 3 deletions
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,6 +36,12 @@ jobs:
36
36
packages: read
37
37
actions: read
38
38
contents: read
39
+
strategy:
40
+
fail-fast: false
41
+
matrix:
42
+
include:
43
+
- language: python
44
+
- language: actions
39
45
40
46
steps:
41
47
- name: Checkout repository
@@ -52,7 +58,7 @@ jobs:
52
58
- name: Initialize CodeQL
53
59
uses: github/codeql-action/init@v3
54
60
with:
55
-
languages: python
61
+
languages: ${{ matrix.language }}
56
62
build-mode: none
57
63
# 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