File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 5555
5656 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757 # If this step fails, then you should remove it and run the build manually (see below)
58- - name : Autobuild
59- uses : github/codeql-action/autobuild@v2
58+ # - name: Autobuild
59+ # uses: github/codeql-action/autobuild@v2
60+ - name : Setup .NET Core
61+ uses : actions/setup-dotnet@v3
62+ with :
63+ global-json-file : global.json
64+
65+ - name : Restore nHapi
66+ run : |
67+ dotnet restore nHapi.sln --configfile build/.nuget/NuGet.config
68+
69+ - name : Build nHapi
70+ run : |
71+ dotnet build nHapi.sln -c Release --no-restore
6072
6173 # ℹ️ Command-line programs to run using the OS shell.
6274 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6981 # ./location_of_script_within_repo/buildscript.sh
7082
7183 - name : Perform CodeQL Analysis
72- uses : github/codeql-action/analyze@v2
84+ uses : github/codeql-action/analyze@v2
85+ with :
86+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments