File tree 2 files changed +10
-8
lines changed 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,20 @@ jobs:
16
16
- name : Setup .NET
17
17
uses : actions/setup-dotnet@v1
18
18
with :
19
- dotnet-version : 5.0 .*
19
+ dotnet-version : 3.1 .*
20
20
- name : Restore dependencies
21
21
run : dotnet restore
22
22
- name : Build
23
23
run : dotnet build --no-restore
24
24
- name : Unit Tests
25
- run : dotnet test test/WorkflowCore.UnitTests --no-build --verbosity normal
25
+ run : dotnet test test/WorkflowCore.UnitTests --no-build --verbosity normal -p:ParallelizeTestCollections=false
26
26
- name : Integration Tests
27
- run : dotnet test test/WorkflowCore.IntegrationTests --no-build --verbosity normal
27
+ run : dotnet test test/WorkflowCore.IntegrationTests --no-build --verbosity normal -p:ParallelizeTestCollections=false
28
28
- name : PostgreSQL Tests
29
- run : dotnet test test/WorkflowCore.Tests.PostgreSQL --no-build --verbosity normal
29
+ run : dotnet test test/WorkflowCore.Tests.PostgreSQL --no-build --verbosity normal -p:ParallelizeTestCollections=false
30
30
- name : Redis Tests
31
- run : dotnet test test/WorkflowCore.Tests.Redis --no-build --verbosity normal
31
+ run : dotnet test test/WorkflowCore.Tests.Redis --no-build --verbosity normal -p:ParallelizeTestCollections=false
32
32
- name : SQL Server Tests
33
- run : dotnet test test/WorkflowCore.Tests.SqlServer --no-build --verbosity normal
33
+ run : dotnet test test/WorkflowCore.Tests.SqlServer --no-build --verbosity normal -p:ParallelizeTestCollections=false
34
34
- name : Elasticsearch Tests
35
- run : dotnet test test/WorkflowCore.Tests.Elasticsearch --no-build --verbosity normal
35
+ run : dotnet test test/WorkflowCore.Tests.Elasticsearch --no-build --verbosity normal -p:ParallelizeTestCollections=false
Original file line number Diff line number Diff line change 26
26
<PackageReference Include =" System.Reflection.TypeExtensions" Version =" 4.7.0" />
27
27
<PackageReference Include =" System.Threading.Thread" Version =" 4.3.0" />
28
28
<PackageReference Include =" System.Linq.Queryable" Version =" 4.3.0" />
29
- <InternalsVisibleTo Include =" WorkflowCore.IntegrationTests" />
29
+ <AssemblyAttribute Include =" System.Runtime.CompilerServices.InternalsVisibleTo" >
30
+ <_Parameter1 >WorkflowCore.IntegrationTests</_Parameter1 >
31
+ </AssemblyAttribute >
30
32
</ItemGroup >
31
33
32
34
<ItemGroup >
You can’t perform that action at this time.
0 commit comments