Skip to content

Attempt to implement rtcp receiver reports; Attempt to implement fec;… #41

Attempt to implement rtcp receiver reports; Attempt to implement fec;…

Attempt to implement rtcp receiver reports; Attempt to implement fec;… #41

Workflow file for this run

name: .NET Build
on:
push:
paths:
- 'docs/**'
- 'src/**'
- 'libs/**'
- 'examples/**'
- 'tools/**'
pull_request:
paths:
- 'docs/**'
- 'src/**'
- 'libs/**'
- 'examples/**'
- 'tools/**'
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
jobs:
build_and_publish:
name: Build
runs-on: self-hosted
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]')"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: '0'
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
- name: Build
run: "dotnet build"