From f6964768159b76f175ef102a1dbcf3f851482afe Mon Sep 17 00:00:00 2001 From: nikkie Date: Sun, 3 Nov 2024 15:19:33 +0000 Subject: [PATCH] bugfix: Action stntax error --- .github/workflows/unittests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index bb38433f..da81019a 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -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)