File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # For most projects, this workflow file will not need changing; you simply need
2+ # to commit it to your repository.
3+ #
4+ # You may wish to alter this file to override the set of languages analyzed,
5+ # or to provide custom queries or build logic.
6+ #
7+ # ******** NOTE ********
8+ # We have attempted to detect the languages in your repository. Please check
9+ # the `language` matrix defined below to confirm you have the correct set of
10+ # supported CodeQL languages.
11+ #
12+ name : " CodeQL Advanced"
13+
14+ on :
15+ push :
16+ branches : [ "develop" ]
17+ pull_request :
18+ branches : [ "develop" ]
19+
20+ jobs :
21+ analyze :
22+ name : Analyze
23+ runs-on : ubuntu-22.04
24+ strategy :
25+ fail-fast : false
26+ matrix :
27+ include :
28+ - language : c-cpp
29+
30+ steps :
31+ - name : Checkout repository
32+ uses : actions/checkout@v4
33+
34+ # Initializes the CodeQL tools for scanning.
35+ - name : Initialize CodeQL
36+ uses : github/codeql-action/init@v3
37+ with :
38+ languages : ${{ matrix.language }}
39+
40+ - name : Autobuild
41+ uses : github/codeql-action/autobuild@v3
42+
43+ - name : Perform CodeQL Analysis
44+ uses : github/codeql-action/analyze@v3
45+ with :
46+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments