From d5fd66a84eee1dabc3d5c96dc4afd8786e6b6a49 Mon Sep 17 00:00:00 2001 From: Ajeet yadav Date: Mon, 11 Mar 2024 00:40:23 +0530 Subject: [PATCH] changed condition --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 240c437..0947a36 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,11 +36,11 @@ jobs: cache: "poetry" - name: Installing Portaudio in Ubuntu - if: ${{ matrix.os }} == "ubuntu-latest" + if: matrix.os == 'ubuntu-latest' run: sudo apt-get install portaudio19-dev python-all-dev - name: Installing Portaudio in Mac - if: ${{ matrix.os }} == "mac-latest" + if: matrix.os == 'mac-latest' run: brew install portaudio - name: Install Poetry Package