@@ -13,10 +13,10 @@ jobs:
1313 - uses : actions/checkout@v4
1414 with :
1515 fetch-depth : ' 0' # all
16- - name : Setup .NET 8 .0
16+ - name : Setup .NET 9 .0
1717 uses : actions/setup-dotnet@v4
1818 with :
19- dotnet-version : ' 8 .0.x'
19+ dotnet-version : ' 9 .0.x'
2020 - name : Setup gitversion
2121 run : dotnet tool install --global GitVersion.Tool
2222 - name : Calculate version
@@ -30,25 +30,23 @@ jobs:
3030 run : dotnet build DynamicExpresso.sln --no-restore -c Release /p:Version=${{steps.calc_version.outputs.PROJECT_VERSION}}
3131 - name : Test .net core 8.0
3232 run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net8.0
33+ - name : Test .net core 9.0
34+ run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net9.0
3335 test-win :
34- runs-on : windows-2019
36+ runs-on : windows-2022
3537 steps :
3638 - uses : actions/checkout@v4
37- - name : Setup .NET 7 .0
39+ - name : Setup .NET 9 .0
3840 uses : actions/setup-dotnet@v4
3941 with :
40- dotnet-version : ' 7.0.x'
41- - name : Setup .NET 8.0
42- uses : actions/setup-dotnet@v4
43- with :
44- dotnet-version : ' 8.0.x'
42+ dotnet-version : ' 9.0.x'
4543 - name : Restore packages
4644 run : dotnet restore DynamicExpresso.sln
4745 - name : Build
4846 run : dotnet build DynamicExpresso.sln --no-restore -c Release
49- - name : Test .net 4.6.1
50- run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net461
51- - name : Test .net 4.5
52- run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net45
47+ - name : Test .net 4.6.2
48+ run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net462
5349 - name : Test .net core 8.0
5450 run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net8.0
51+ - name : Test .net core 9.0
52+ run : dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net9.0
0 commit comments