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 28
28
- name : Checkout repository
29
29
uses : actions/checkout@v4
30
30
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
-
45
31
- name : Install .NET 6.0
46
32
uses : actions/setup-dotnet@v4
47
33
with :
68
54
# Test
69
55
# ----
70
56
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
-
77
57
- name : Test on .NET 6.0
78
58
run : dotnet test -c Release -f net6.0 --no-build --no-restore -l "console;verbosity=detailed"
79
59
Original file line number Diff line number Diff line change @@ -40,14 +40,6 @@ echo --------------------
40
40
%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
41
41
%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
42
42
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
-
51
43
echo ---------------------------
52
44
echo Running NET6.0 Tests
53
45
echo ---------------------------
You can’t perform that action at this time.
0 commit comments