From 14385a1e4f3e298196b957ad0552ee033ea1c30f Mon Sep 17 00:00:00 2001 From: evgfilim1 Date: Fri, 19 Aug 2022 12:19:57 +0500 Subject: [PATCH] Quote conditions in tests workflow file --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dfb28b82..650d6270 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -61,7 +61,7 @@ jobs: - name: Install and configure Poetry uses: snok/install-poetry@v1 - if: !startswith(matrix.python-version, 'pypy') || matrix.os != 'windows-latest' + if: "!startswith(matrix.python-version, 'pypy') || matrix.os != 'windows-latest'" with: version: 1.1.11 virtualenvs-create: true @@ -69,7 +69,7 @@ jobs: installer-parallel: true - name: Install and configure Poetry (PyPy on Windows) - if: startswith(matrix.python-version, 'pypy') && matrix.os == 'windows-latest' + if: "startswith(matrix.python-version, 'pypy') && matrix.os == 'windows-latest'" env: POETRY_VERSION: 1.1.11 run: |