File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : " CodeQL Advanced"
3
+
4
+ on :
5
+ push :
6
+ branches : [ "main" ]
7
+ pull_request :
8
+ branches : [ "main" ]
9
+ schedule :
10
+ - cron : ' 42 10 * * 4'
11
+
12
+ jobs :
13
+ analyze :
14
+ name : Analyze (${{ matrix.language }})
15
+ runs-on : ubuntu-latest
16
+ permissions :
17
+ security-events : write
18
+ packages : read
19
+
20
+ strategy :
21
+ fail-fast : false
22
+ matrix :
23
+ include :
24
+ - language : actions
25
+ - language : python
26
+ steps :
27
+ - name : Checkout repository
28
+ uses : actions/checkout@v4
29
+
30
+ - name : Initialize CodeQL
31
+ uses : github/codeql-action/init@v3
32
+ with :
33
+ languages : ${{ matrix.language }}
34
+ build-mode : none
35
+
36
+ - name : Perform CodeQL Analysis
37
+ uses : github/codeql-action/analyze@v3
38
+ with :
39
+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments