File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : .NET Build Validation
2
2
3
- on :
3
+ ' on ' :
4
4
pull_request :
5
5
branches : [ main ]
6
6
paths :
30
30
runs-on : ubuntu-latest
31
31
32
32
strategy :
33
- fail-fast : false
33
+ fail-fast : false # Show results for all projects even if some fail
34
34
matrix :
35
35
solution :
36
36
- path : " 02-SetupDevEnvironment/src/GetingReadySamples.sln"
@@ -48,16 +48,16 @@ jobs:
48
48
- name : Checkout code
49
49
uses : actions/checkout@v4
50
50
51
- - name : Setup .NET
51
+ - name : Setup .NET 9.0
52
52
uses : actions/setup-dotnet@v4
53
53
with :
54
54
dotnet-version : ' 9.0.x'
55
55
56
- - name : Restore dependencies
56
+ - name : Restore dependencies for ${{ matrix.solution.name }}
57
57
run : dotnet restore "${{ matrix.solution.path }}"
58
58
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
61
61
62
62
- name : Display build result
63
63
if : success()
You can’t perform that action at this time.
0 commit comments