Skip to content

Commit

Permalink
only run tests about quic in linux
Browse files Browse the repository at this point in the history
  • Loading branch information
kerryjiang committed May 11, 2024
1 parent 822fd85 commit c810d30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
run: dotnet build -c Release
- name: Build Samples
run: dotnet build -c Release samples/samples.sln
- name: Test - Not macOS
if: runner.os != 'macOS'
- name: Test - Linux
if: runner.os == 'Linux'
run: |
cd test/SuperSocket.Tests
dotnet test
- name: Test - macOS
if: runner.os == 'macOS'
- name: Test - NoLinux
if: runner.os != 'Linux'
run: |
cd test/SuperSocket.Tests
dotnet test --filter FullyQualifiedName!~QuicHostConfigurator

0 comments on commit c810d30

Please sign in to comment.