File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+ schedule :
11
+ - cron : " 0 15 * * 1" # Mondays at 7:00 AM PST
12
+
13
+ permissions : read-all
14
+
15
+ jobs :
16
+ analyze :
17
+ name : Analyze
18
+ runs-on : ubuntu-latest
19
+ permissions :
20
+ security-events : write
21
+
22
+ steps :
23
+ - name : Checkout repository
24
+ uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
25
+
26
+ - name : Initialize CodeQL
27
+ uses : github/codeql-action/init@b2c19fb9a2a485599ccf4ed5d65527d94bc57226
28
+ with :
29
+ languages : go
30
+
31
+ - name : Autobuild
32
+ uses : github/codeql-action/autobuild@b2c19fb9a2a485599ccf4ed5d65527d94bc57226
33
+
34
+ - name : Perform CodeQL Analysis
35
+ uses : github/codeql-action/analyze@b2c19fb9a2a485599ccf4ed5d65527d94bc57226
You can’t perform that action at this time.
0 commit comments