use the first available audio device #420
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
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
pr-test: | |
runs-on: ${{ matrix.os.runs-on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- runs-on: windows-latest | |
arch: win-x64 | |
- runs-on: macos-13 | |
arch: osx-x64 | |
- runs-on: ubuntu-latest | |
arch: linux-x64 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: restore | |
run: dotnet restore OpenUtau -r ${{ matrix.os.arch }} | |
- name: test | |
run: dotnet test OpenUtau.Test |