File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : CodeQL
3
+
4
+ on :
5
+ push :
6
+ branches :
7
+ - master
8
+ pull_request :
9
+ branches :
10
+ - master
11
+ schedule :
12
+ - cron : 00 00 * * 00
13
+
14
+ jobs :
15
+ analyze :
16
+ name : Analyze
17
+ runs-on : ubuntu-latest
18
+ strategy :
19
+ fail-fast : false
20
+ matrix :
21
+ language :
22
+ - go
23
+ steps :
24
+ - name : Checkout repository
25
+ uses : actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
26
+ - name : Setup Go
27
+ uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
28
+ with :
29
+ go-version-file : " go.mod"
30
+ cache : false
31
+ - name : Initialize CodeQL
32
+ uses : github/codeql-action/init@c4fb451437765abf5018c6fbf22cce1a7da1e5cc # codeql-bundle-v2.17.1
33
+ with :
34
+ languages : " ${{ matrix.language }}"
35
+ - name : Autobuild
36
+ uses : github/codeql-action/autobuild@c4fb451437765abf5018c6fbf22cce1a7da1e5cc # codeql-bundle-v2.17.1
37
+ - name : Perform CodeQL Analysis
38
+ uses : github/codeql-action/analyze@c4fb451437765abf5018c6fbf22cce1a7da1e5cc # codeql-bundle-v2.17.1
You can’t perform that action at this time.
0 commit comments