We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd5cfb5 commit c7e67cdCopy full SHA for c7e67cd
1 file changed
.github/workflows/build.yml
@@ -21,7 +21,7 @@ jobs:
21
steps:
22
- uses: actions/checkout@v1
23
- name: Install libmsquic
24
- if: runner.os == 'ubuntu-latest'
+ if: runner.os == 'Linux'
25
run: |
26
sudo apt-get update
27
sudo apt-get -y install libmsquic
@@ -43,12 +43,12 @@ jobs:
43
- name: Build Samples
44
run: dotnet build -c Release samples/samples.sln
45
- name: Test
46
- if: runner.os != 'macos-latest'
+ if: runner.os != 'macOS'
47
48
cd test/SuperSocket.Tests
49
dotnet test
50
51
- if: runner.os == 'macos-latest'
+ if: runner.os == 'macOS'
52
53
54
dotnet test --filter Category!=QUIC
0 commit comments