RTSPS Server Support and bug fix to Overlapping Writes with a SslStream() #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Restore dependencies | |
run: dotnet restore RTSP.sln | |
- name: Build | |
run: dotnet build --no-restore RTSP.sln | |
- name: Test | |
run: dotnet test --no-build --verbosity normal --filter TestCategory!=Integration RTSP.sln |