File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,16 @@ jobs:
1818
1919 steps :
2020 - uses : actions/checkout@v4
21- - name : Setup .NET 8 .0
22- uses : actions/setup-dotnet@v1
21+ - name : Setup .NET 9 .0
22+ uses : actions/setup-dotnet@v4
2323 with :
24- dotnet-version : 8 .0.*
24+ dotnet-version : 9 .0.*
2525 - name : Install dependencies
2626 run : dotnet restore
2727 - name : Build
2828 run : dotnet build --configuration ${{ matrix.build-config }} --no-restore
2929 - name : Test
30- run : dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.System/Test.AMT.Extensions.System.csproj
30+ run : |
31+ dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.System/Test.AMT.Extensions.System.csproj
32+ dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.Linq/Test.AMT.Extensions.Linq.csproj
3133 # NOTE: does not test /Test.AMT.Extensions.Logging at GitHub b/c fails w/IP port comms.
You can’t perform that action at this time.
0 commit comments