Skip to content

Complete test for same port added 2 time #71

Complete test for same port added 2 time

Complete test for same port added 2 time #71

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