File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : .NET Build Validation
22
3- on :
3+ ' on ' :
44 pull_request :
55 branches : [ main ]
66 paths :
3030 runs-on : ubuntu-latest
3131
3232 strategy :
33- fail-fast : false
33+ fail-fast : false # Show results for all projects even if some fail
3434 matrix :
3535 solution :
3636 - path : " 02-SetupDevEnvironment/src/GetingReadySamples.sln"
@@ -48,16 +48,16 @@ jobs:
4848 - name : Checkout code
4949 uses : actions/checkout@v4
5050
51- - name : Setup .NET
51+ - name : Setup .NET 9.0
5252 uses : actions/setup-dotnet@v4
5353 with :
5454 dotnet-version : ' 9.0.x'
5555
56- - name : Restore dependencies
56+ - name : Restore dependencies for ${{ matrix.solution.name }}
5757 run : dotnet restore "${{ matrix.solution.path }}"
5858
59- - name : Build solution
60- run : dotnet build "${{ matrix.solution.path }}" --no-restore --configuration Release
59+ - name : Build ${{ matrix. solution.name }}
60+ run : dotnet build "${{ matrix.solution.path }}" --no-restore --configuration Release --verbosity minimal
6161
6262 - name : Display build result
6363 if : success()
You can’t perform that action at this time.
0 commit comments