Skip to content

feat: add video and audio filters #312

feat: add video and audio filters

feat: add video and audio filters #312

name: Build and Test
on:
push:
branches: [main, develop, features/**]
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
name: Dotnet build
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
7.x.x
8.x.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --logger trx --results-directory test-results --no-build
- name: Upload test results
uses: actions/upload-artifact@v3
with:
name: test-results
path: ./test-results
if: ${{ always() }}