@@ -13,11 +13,15 @@ jobs:
1313 name : Testing
1414 strategy :
1515 matrix :
16- dotnet : [ 'netcoreapp3.1', 'net5.0' ]
16+ dotnet : [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
1717 steps :
1818 - name : Checkout code base
1919 uses : actions/checkout@v2
2020
21+ - uses : actions/setup-dotnet@v3
22+ with :
23+ dotnet-version : ' 7.0.x'
24+
2125 - name : Run tests
2226 run : dotnet test --verbosity normal -f ${{ matrix.dotnet }}
2327
@@ -26,14 +30,14 @@ jobs:
2630 name : Building
2731 strategy :
2832 matrix :
29- dotnet : ['netcoreapp3.1', 'net5.0']
33+ dotnet : [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
3034 steps :
3135 - name : Checkout code base
3236 uses : actions/checkout@v2
3337
34- - uses : actions/setup-dotnet@v1
38+ - uses : actions/setup-dotnet@v3
3539 with :
36- dotnet-version : ' 5 .0.x'
40+ dotnet-version : ' 7 .0.x'
3741
3842 - name : Cleaning
3943 run : dotnet clean
6771 path : build/netcoreapp3.1
6872 key : ${{ runner.os }}-build-netcoreapp3.1
6973
70- - uses : actions/setup-dotnet@v1
74+ - uses : actions/setup-dotnet@v3
7175 with :
72- dotnet-version : ' 5 .0.x'
76+ dotnet-version : ' 7 .0.x'
7377
7478 - name : Install Xml to Markdown tool
7579 run : dotnet new tool-manifest && dotnet tool install EAVFW.Extensions.Docs.TransformToMarkdown
0 commit comments