File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-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+ security-events : write
15+ packages : read
16+
17+ strategy :
18+ matrix :
19+ include :
20+ - language : python
21+ build-mode : none
22+ - language : java-kotlin
23+ build-mode : none
24+ steps :
25+ - name : Checkout repository
26+ uses : actions/checkout@6ccd57f4c5d15bdc2fef309bd9fb6cc9db2ef1c6
27+ - name : Initialize CodeQL
28+ uses : github/codeql-action/init@4b1d7da102ff94aca014c0245062b1a463356d72
29+ with :
30+ languages : ${{ matrix.language }}
31+ build-mode : ${{ matrix.build-mode }}
32+ - name : Perform CodeQL Analysis
33+ uses : github/codeql-action/analyze@4b1d7da102ff94aca014c0245062b1a463356d72
34+ with :
35+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments