Skip to content

Commit

Permalink
bugfix: Action stntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ftnext committed Nov 3, 2024
1 parent 60a454b commit f696476
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
run: |
python -m pip install 'pocketsphinx<5'
- name: Install Python dependencies (Ubuntu, <=3.12)
if: matrix.os == 'ubuntu-latest' and matrix.python-version != '3.13'
if: matrix.os == 'ubuntu-latest' && matrix.python-version != '3.13'
run: |
python -m pip install .[dev,audio,whisper-local,whisper-api]
- name: Install Python dependencies (Ubuntu, 3.13)
if: matrix.os == 'ubuntu-latest' and matrix.python-version == '3.13'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'
run: |
python -m pip install .[dev,audio,whisper-api]
- name: Install Python dependencies (Windows)
Expand Down

0 comments on commit f696476

Please sign in to comment.