File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+ workflow_dispatch :
7
+ schedule :
8
+ - cron : " 26 6 * * 6"
9
+
10
+ concurrency :
11
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
+ cancel-in-progress : true
13
+
14
+ jobs :
15
+ analyze :
16
+ name : " Analyze"
17
+ runs-on : ubuntu-latest
18
+ permissions :
19
+ actions : read
20
+ contents : read
21
+ security-events : write
22
+ strategy :
23
+ fail-fast : false
24
+ matrix :
25
+ language : ["python"]
26
+ steps :
27
+ - name : " Checkout repository"
28
+ uses : actions/checkout@v4
29
+ - name : " Initialize CodeQL"
30
+ uses : github/codeql-action/init@v3
31
+ with :
32
+ languages : ${{ matrix.language }}
33
+ - name : " Autobuild"
34
+ uses : github/codeql-action/autobuild@v3
35
+ - name : " Perform CodeQL Analysis"
36
+ uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments