File tree Expand file tree Collapse file tree 2 files changed +0
-28
lines changed
Expand file tree Collapse file tree 2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change 2828 - name : Checkout repository
2929 uses : actions/checkout@v4
3030
31- # Several .NET Core versions will be used during the test run.
32- # The lowest version gets installed first in order to prevent
33- # "a newer version is already installed" install errors.
34-
35- - name : Install .NET Core 2.1
36- uses : actions/setup-dotnet@v4
37- with :
38- dotnet-version : 2.1.x
39-
40- - name : Install .NET Core 3.1
41- uses : actions/setup-dotnet@v4
42- with :
43- dotnet-version : 3.1.x
44-
4531 - name : Install .NET 6.0
4632 uses : actions/setup-dotnet@v4
4733 with :
6854 # Test
6955 # ----
7056
71- - name : Test on .NET Core 2.1
72- run : dotnet test -c Release -f netcoreapp2.1 --no-build --no-restore -l "console;verbosity=detailed"
73-
74- - name : Test on .NET Core 3.1
75- run : dotnet test -c Release -f netcoreapp3.1 --no-build --no-restore -l "console;verbosity=detailed"
76-
7757 - name : Test on .NET 6.0
7858 run : dotnet test -c Release -f net6.0 --no-build --no-restore -l "console;verbosity=detailed"
7959
Original file line number Diff line number Diff line change @@ -40,14 +40,6 @@ echo --------------------
4040%UserProfile% \.nuget\packages\nunit.consolerunner\3.11.1\tools\nunit3-console.exe src/Castle.Core.Tests/bin/%Configuration% /net462/Castle.Core.Tests.exe --result=DesktopClrTestResults.xml;format=nunit3 || exit /b 1
4141%UserProfile% \.nuget\packages\nunit.consolerunner\3.11.1\tools\nunit3-console.exe src/Castle.Core.Tests.WeakNamed/bin/%Configuration% /net462/Castle.Core.Tests.WeakNamed.exe --result=DesktopClrWeakNamedTestResults.xml;format=nunit3 || exit /b 1
4242
43- echo ---------------------------
44- echo Running NETCOREAPP3.1 Tests
45- echo ---------------------------
46-
47- dotnet .\src\Castle.Core.Tests\bin\%Configuration% \netcoreapp3.1\Castle.Core.Tests.dll --result=NetCoreClrTestResults.xml;format=nunit3 || exit /b 1
48- dotnet .\src\Castle.Core.Tests.WeakNamed\bin\%Configuration% \netcoreapp3.1/Castle.Core.Tests.WeakNamed.dll --result=NetCoreClrWeakNamedTestResults.xml;format=nunit3 || exit /b 1
49-
50-
5143echo ---------------------------
5244echo Running NET6.0 Tests
5345echo ---------------------------
You can’t perform that action at this time.
0 commit comments