File tree 1 file changed +46
-0
lines changed
1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # vi: ts=2 sw=2 et:
3
+ #
4
+ name : " CodeQL"
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - main
10
+ pull_request :
11
+ branches :
12
+ - main
13
+
14
+ permissions :
15
+ contents : read
16
+
17
+ jobs :
18
+ analyze :
19
+ name : Analyze
20
+ runs-on : ubuntu-22.04
21
+ concurrency :
22
+ group : ${{ github.workflow }}-${{ matrix.language }}-${{ github.ref }}
23
+ cancel-in-progress : true
24
+ permissions :
25
+ actions : read
26
+ security-events : write
27
+
28
+ strategy :
29
+ fail-fast : false
30
+ matrix :
31
+ language : ['python']
32
+
33
+ steps :
34
+ - name : Checkout repository
35
+ uses : actions/checkout@v3
36
+
37
+ - name : Initialize CodeQL
38
+ uses : github/codeql-action/init@v2
39
+ with :
40
+ languages : ${{ matrix.language }}
41
+
42
+ - name : Autobuild
43
+ uses : github/codeql-action/autobuild@v2
44
+
45
+ - name : Perform CodeQL Analysis
46
+ uses : github/codeql-action/analyze@v2
You can’t perform that action at this time.
0 commit comments