We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822fd85 commit c810d30Copy full SHA for c810d30
1 file changed
.github/workflows/build.yml
@@ -42,13 +42,13 @@ jobs:
42
run: dotnet build -c Release
43
- name: Build Samples
44
run: dotnet build -c Release samples/samples.sln
45
- - name: Test - Not macOS
46
- if: runner.os != 'macOS'
+ - name: Test - Linux
+ if: runner.os == 'Linux'
47
run: |
48
cd test/SuperSocket.Tests
49
dotnet test
50
- - name: Test - macOS
51
- if: runner.os == 'macOS'
+ - name: Test - NoLinux
+ if: runner.os != 'Linux'
52
53
54
dotnet test --filter FullyQualifiedName!~QuicHostConfigurator
0 commit comments