Skip to content

Commit

Permalink
Try fixing multi platform test
Browse files Browse the repository at this point in the history
  • Loading branch information
yodakohl committed Apr 10, 2024
1 parent 88ff996 commit 3f98e30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
- uses: actions/checkout@v3

- name: Install Dependencies Windows
- if: runner.os == 'Windows'
if: runner.os == 'Windows'
run: |
pip install pydub
- name: Install Dependencies Linux
- if: runner.os == 'Linux'
if: runner.os == 'Linux'
run: |
pip install pydub
- name: Install Dependencies Mac
- if: runner.os == 'macOS'
if: runner.os == 'macOS'
run: |
brew install portaudio
pip install pydub
Expand Down

0 comments on commit 3f98e30

Please sign in to comment.