Skip to content

Commit 168caba

Browse files
authored
Update dotnet.yml
1 parent 47cb5d0 commit 168caba

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,15 @@ jobs:
2121
run: dotnet restore
2222
- name: Build
2323
run: dotnet build --no-restore
24-
- name: Test
25-
run: dotnet test --no-build --verbosity normal
24+
- name: Unit Tests
25+
run: dotnet test test/WorkflowCore.UnitTests --no-build --verbosity normal
26+
- name: Integration Tests
27+
run: dotnet test test/WorkflowCore.IntegrationTests --no-build --verbosity normal
28+
- name: PostgreSQL Tests
29+
run: dotnet test test/WorkflowCore.Tests.PostgreSQL --no-build --verbosity normal
30+
- name: Redis Tests
31+
run: dotnet test test/WorkflowCore.Tests.Redis --no-build --verbosity normal
32+
- name: SQL Server Tests
33+
run: dotnet test test/WorkflowCore.Tests.SqlServer --no-build --verbosity normal
34+
- name: Elasticsearch Tests
35+
run: dotnet test test/WorkflowCore.Tests.Elasticsearch --no-build --verbosity normal

0 commit comments

Comments
 (0)