Skip to content

Silence warning when multiple class in same file #123

Silence warning when multiple class in same file

Silence warning when multiple class in same file #123

Workflow file for this run

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