File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CodeQL
2+
3+ on :
4+ push :
5+ branches : [main, master]
6+ pull_request :
7+ branches : [main, master]
8+ schedule :
9+ - cron : " 17 4 * * 1"
10+ workflow_dispatch :
11+
12+ permissions :
13+ actions : read
14+ contents : read
15+ security-events : write
16+
17+ concurrency :
18+ group : codeql-${{ github.workflow }}-${{ github.ref }}
19+ cancel-in-progress : true
20+
21+ jobs :
22+ analyze :
23+ name : Analyze (${{ matrix.language }})
24+ runs-on : ubuntu-24.04
25+ timeout-minutes : 30
26+
27+ strategy :
28+ fail-fast : false
29+ matrix :
30+ include :
31+ - language : rust
32+ build-mode : none
33+
34+ steps :
35+ - name : Checkout
36+ uses : actions/checkout@v6
37+
38+ - name : Initialize CodeQL
39+ uses : github/codeql-action/init@v4
40+ with :
41+ languages : ${{ matrix.language }}
42+ build-mode : ${{ matrix.build-mode }}
43+
44+ - name : Perform CodeQL Analysis
45+ uses : github/codeql-action/analyze@v4
46+ with :
47+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments