Skip to content

Added playback controls; persist options #9

Added playback controls; persist options

Added playback controls; persist options #9

Workflow file for this run

name: Automated Testing
on:
push:
branches:
- "*"
workflow_call:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macOS-latest ]
steps:
- name: Checkout Code
uses: actions/checkout@master
- name: Setup Dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x' # SDK Version to use
- name: .Net Core Info
run: dotnet --info
- name: Run Unit Tests
run: dotnet test