Added WebRTC demo that will use the VP8.Net encoder if/when it is rea… #621
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: osx-x64 | |
on: | |
push: | |
branches: | |
- master | |
- net6 | |
jobs: | |
build: | |
strategy: | |
matrix: | |
framework: [ 'net8.0' ] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Unit tests | |
run: dotnet test test/unit/SIPSorcery.UnitTests.csproj --framework ${{ matrix.framework }} -c Release |