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 Analysis
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+ schedule :
9+ - cron : " 0 6 * * 1"
10+
11+ jobs :
12+ analyze :
13+ name : Analyze
14+ runs-on : ubuntu-latest
15+ permissions :
16+ security-events : write
17+ actions : read
18+ contents : read
19+ strategy :
20+ fail-fast : false
21+ matrix :
22+ language : [python]
23+ steps :
24+ - name : Checkout repository
25+ uses : actions/checkout@v4
26+
27+ - name : Initialize CodeQL
28+ uses : github/codeql-action/init@v3
29+ with :
30+ languages : ${{ matrix.language }}
31+
32+ - name : Autobuild
33+ uses : github/codeql-action/autobuild@v3
34+
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