Skip to content

Commit c72e128

Browse files
committed
test(github workflow): add integration tests for Dtmcli
1 parent a5a16c4 commit c72e128

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/build_and_it.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,22 @@ jobs:
5858
run: |
5959
cd tests/BusiGrpcService
6060
nohup dotnet run > /home/runner/work/client-csharp/client-csharp/logs/app.log 2>&1 &
61-
- name: Run Integration Tests
61+
- name: Run Integration Tests (Dtmgrpc)
6262
env:
6363
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
6464
DOTNET_NOLOGO: 1
6565
DOTNET_CLI_HOME: ${{ runner.temp }}/dotnet-cli-home
6666
run: |
6767
dotnet build tests/Dtmgrpc.IntegrationTests/Dtmgrpc.IntegrationTests.csproj
6868
dotnet test --framework=net8.0 tests/Dtmgrpc.IntegrationTests/Dtmgrpc.IntegrationTests.csproj
69+
- name: Run Integration Tests (Dtmcli)
70+
env:
71+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
72+
DOTNET_NOLOGO: 1
73+
DOTNET_CLI_HOME: ${{ runner.temp }}/dotnet-cli-home
74+
run: |
75+
dotnet build tests/Dtmcli.IntegrationTests/Dtmcli.IntegrationTests.csproj
76+
dotnet test --framework=net8.0 tests/Dtmcli.IntegrationTests/Dtmcli.IntegrationTests.csproj
6977
- name: Upload logs
7078
if: always()
7179
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)