From fdf5231692f7e0fbfae1a7bcd8d7968db81fea2f Mon Sep 17 00:00:00 2001 From: Kerry Jiang Date: Sat, 17 Aug 2024 23:11:00 -0700 Subject: [PATCH] fixed the problem unit tests were not found in windows --- .github/workflows/build.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 65bc58342..9aef0168e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,8 +47,13 @@ jobs: run: | cd test/SuperSocket.Tests dotnet test - - name: Test - NoLinux - if: runner.os != 'Linux' + - name: Test - macOS + if: runner.os == 'macOS' run: | cd test/SuperSocket.Tests - dotnet test --filter FullyQualifiedName\!~TestQuicSupport \ No newline at end of file + dotnet test --filter FullyQualifiedName\!~TestQuicSupport + - name: Test - Windows + if: runner.os == 'Windows' + run: | + cd test/SuperSocket.Tests + dotnet test --filter FullyQualifiedName!~TestQuicSupport \ No newline at end of file