File tree 2 files changed +11
-19
lines changed
2 files changed +11
-19
lines changed Original file line number Diff line number Diff line change 7
7
env :
8
8
DOTNET_NOLOGO : true
9
9
steps :
10
- - uses : actions/checkout@v3
11
- - uses : actions/setup-dotnet@v3
10
+ - uses : actions/checkout@v4.2.2
11
+ - uses : actions/setup-dotnet@v4.1.0
12
12
with :
13
- dotnet-version : |
14
- 3.1.x
15
- 6.0.x
13
+ dotnet-version : 9.0.x
16
14
- run : dotnet restore src/NetMQ.sln
17
15
- name : build
18
16
run : dotnet build src/NetMQ.sln /p:Configuration=Release /verbosity:minimal
19
- - name : test netcoreapp3.1
20
- run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f netcoreapp3.1 src/NetMQ.Tests/NetMQ.Tests.csproj
21
- - name : test net6.0
22
- run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f net6.0 src/NetMQ.Tests/NetMQ.Tests.csproj
17
+ - name : test net9.0
18
+ run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f net9.0 src/NetMQ.Tests/NetMQ.Tests.csproj
23
19
windows :
24
20
runs-on : windows-latest
25
21
env :
26
22
DOTNET_NOLOGO : true
27
23
steps :
28
- - uses : actions/checkout@v3
29
- - uses : actions/setup-dotnet@v3
24
+ - uses : actions/checkout@v4.2.2
25
+ - uses : actions/setup-dotnet@v4.1.0
30
26
with :
31
- dotnet-version : |
32
- 3.1.x
33
- 6.0.x
27
+ dotnet-version : 9.0.x
34
28
- name : Install codecov
35
29
run : |
36
30
choco install opencover.portable
37
31
choco install codecov
38
32
- run : dotnet restore src/NetMQ.sln
39
33
- name : build
40
34
run : dotnet build src/NetMQ.sln /p:Configuration=Release /verbosity:minimal
41
- - name : test net6.0
42
- run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f net6.0 src\NetMQ.Tests\NetMQ.Tests.csproj
43
- - name : test netcoreapp3.1
44
- run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f netcoreapp3.1 src\NetMQ.Tests\NetMQ.Tests.csproj
35
+ - name : test net9.0
36
+ run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f net9.0 src\NetMQ.Tests\NetMQ.Tests.csproj
45
37
- name : test net47
46
38
run : dotnet test -v n -p:ParallelizeTestCollections=false --configuration Release --no-build -f net47 src\NetMQ.Tests\NetMQ.Tests.csproj
47
39
- name : coverage
Original file line number Diff line number Diff line change 7
7
<PublicSign Condition =" '$(OS)' != 'Windows_NT' " >true</PublicSign >
8
8
<GenerateRuntimeConfigurationFiles >true</GenerateRuntimeConfigurationFiles >
9
9
<IsTestProject >true</IsTestProject >
10
- <TargetFrameworks >net6.0;netcoreapp3.1 ;net47</TargetFrameworks >
10
+ <TargetFrameworks >net9.0 ;net47</TargetFrameworks >
11
11
</PropertyGroup >
12
12
13
13
<PropertyGroup >
You can’t perform that action at this time.
0 commit comments