File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 2020 with :
2121 dotnet-version : 9.0.x
2222
23+ - name : Cache NuGet packages
24+ uses : actions/cache@v4
25+ with :
26+ path : ~/.nuget/packages
27+ key : ${{runner.os}}-nuget-${{hashFiles('**/*.csproj')}}
28+ restore-keys : |
29+ ${{runner.os}}-nuget-
30+
31+ - name : Restore dependencies
32+ run : dotnet restore src/BootstrapBlazor
33+
2334 - name : Test
2435 run : |
2536 dotnet test test/UnitTest --collect:"XPlat Code Coverage"
Original file line number Diff line number Diff line change 66 - pack
77 - release
88 - hotfix
9+ - dev
910
1011jobs :
1112 pack :
2223 with :
2324 dotnet-version : 9.0.x
2425
26+ - name : Cache NuGet packages
27+ uses : actions/cache@v4
28+ with :
29+ path : ~/.nuget/packages
30+ key : ${{runner.os}}-nuget-${{hashFiles('**/*.csproj')}}
31+ restore-keys : |
32+ ${{runner.os}}-nuget-
33+
34+ - name : Restore dependencies
35+ run : dotnet restore src/BootstrapBlazor
36+
2537 - name : NuGet login
2638 uses : NuGet/login@v1
2739 id : login
You can’t perform that action at this time.
0 commit comments