Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xBaank authored Aug 19, 2024
1 parent 1064ae3 commit bb42d5f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
rid:
- win-x64
- linux-x64
- osx-x64

runs-on: ${{ startsWith(matrix.rid, 'win-') && 'windows-latest' || startsWith(matrix.rid, 'osx-') && 'macos-latest' || 'ubuntu-latest' }}
timeout-minutes: 10
Expand All @@ -39,8 +40,12 @@ jobs:
pactl load-module module-null-sink sink_name=VirtualSink sink_properties=device.description=Virtual_Sink
pactl set-default-sink VirtualSink
- name: Test
- name: Test Linux and Windows
if: ${{ runner.os != "MacOS" }}
run: dotnet test --no-build --verbosity normal
- name: Mac
if: ${{ runner.os != "MacOS" }}
run: arch -x86_64 dotnet test --no-build --verbosity normal
pack:
strategy:
matrix:
Expand Down

0 comments on commit bb42d5f

Please sign in to comment.