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