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 Analysis
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ schedule :
6
+ # ┌───────────── minute (0 - 59)
7
+ # │ ┌───────────── hour (0 - 23)
8
+ # │ │ ┌───────────── day of the month (1 - 31)
9
+ # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
10
+ # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
11
+ # │ │ │ │ │
12
+ # │ │ │ │ │
13
+ # │ │ │ │ │
14
+ # * * * * *
15
+ - cron : ' 30 1 * * *'
16
+
17
+ jobs :
18
+ CodeQL-Build :
19
+ runs-on : ubuntu-latest
20
+
21
+ steps :
22
+ - name : Checkout repository
23
+ uses : actions/checkout@v2
24
+
25
+ # Initializes the CodeQL tools for scanning.
26
+ - name : Initialize CodeQL
27
+ uses : github/codeql-action/init@v1
28
+ with :
29
+ languages : python
30
+
31
+ - name : Autobuild
32
+ uses : github/codeql-action/autobuild@v1
33
+
34
+ - name : Perform CodeQL Analysis
35
+ uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments