Skip to content

There is a bug in the CustomControlUri usage (RTSPClient) #77

There is a bug in the CustomControlUri usage (RTSPClient)

There is a bug in the CustomControlUri usage (RTSPClient) #77

Workflow file for this run

name: Build and Test
on:
push:
branches: [ dotnetcore ]
pull_request:
branches: [ dotnetcore ]
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 RTSP.sln