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