We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90b389b commit dd5cfb5Copy full SHA for dd5cfb5
1 file changed
.github/workflows/build.yml
@@ -20,6 +20,11 @@ jobs:
20
runs-on: ${{matrix.os}}
21
steps:
22
- uses: actions/checkout@v1
23
+ - name: Install libmsquic
24
+ if: runner.os == 'ubuntu-latest'
25
+ run: |
26
+ sudo apt-get update
27
+ sudo apt-get -y install libmsquic
28
- name: Setup .NET Core
29
uses: actions/setup-dotnet@v3
30
with:
@@ -38,6 +43,12 @@ jobs:
38
43
- name: Build Samples
39
44
run: dotnet build -c Release samples/samples.sln
40
45
- name: Test
46
+ if: runner.os != 'macos-latest'
41
47
run: |
42
48
cd test/SuperSocket.Tests
49
dotnet test
50
+ - name: Test
51
+ if: runner.os == 'macos-latest'
52
53
+ cd test/SuperSocket.Tests
54
+ dotnet test --filter Category!=QUIC
0 commit comments