File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 5454 with :
5555 name : framework_win_argb_${{ matrix.configuration }}
5656 path : bundle
57+
58+ codeql :
59+ runs-on : windows-2022
60+ permissions :
61+ security-events : write
62+ steps :
63+ - name : Check out repository code
64+ uses : actions/checkout@v4
65+
66+ - name : Initialize CodeQL
67+ uses : github/codeql-action/init@v4
68+ with :
69+ languages : cpp
70+
71+ - name : Setup NuGet
72+ uses : NuGet/setup-nuget@v2
73+ with :
74+ version : ' 6.x'
75+
76+ - name : Restore dependencies
77+ run : nuget restore FrameworkArgb\FrameworkArgb.sln
78+
79+ - name : Add MSBuild to PATH
80+ uses : microsoft/setup-msbuild@v2
81+
82+ - name : Build solution
83+ run : |
84+ msbuild FrameworkArgb\FrameworkArgb.sln /property:Configuration=Release /property:Platform=x64
85+
86+ - name : Perform CodeQL analysis
87+ uses : github/codeql-action/analyze@v4
You can’t perform that action at this time.
0 commit comments