File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+ schedule :
9+ - cron : ' 44 23 * * 5'
10+
11+ jobs :
12+ analyze :
13+ name : Analyze
14+ runs-on : windows-latest
15+ permissions :
16+ actions : read
17+ contents : read
18+ security-events : write
19+
20+ strategy :
21+ fail-fast : false
22+ matrix :
23+ language : [ 'csharp' ]
24+
25+ steps :
26+ 27+ 28+ with :
29+ spectre : true
30+ toolset : 16
31+
32+ - name : Checkout repository
33+ uses : actions/checkout@v2
34+
35+ - name : Initialize CodeQL
36+ uses : github/codeql-action/init@v1
37+ with :
38+ languages : ${{ matrix.language }}
39+
40+ - name : Build the Open Folder Extension
41+ run : |
42+ nuget restore ${{ github.workspace }}\AutoItSyntaxHighlight\packages.config -SolutionDirectory ${{ github.workspace }} -NonInteractive
43+ nuget restore ${{ github.workspace }}\AutoItSyntaxHighlight.sln -NonInteractive
44+ msbuild ${{ github.workspace }}\AutoItSyntaxHighlight.sln /t:rebuild /p:Platform="Any CPU" /p:Configuration="Debug"
45+
46+ - name : Perform CodeQL Analysis
47+ uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments