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