From bed8ca24e11c4fcb933e8f2e372bc6643145e63e Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Mon, 27 Dec 2021 12:25:55 +0300 Subject: [PATCH] fix condition --- .github/workflows/e2e-cache.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml index 09e4aa307..0872816ec 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -52,7 +52,7 @@ jobs: - name: Install dependencies shell: pwsh run: | - if (${{ matrix.python-version }} -Match "pypy") { + if ("${{ matrix.python-version }}" -Match "pypy") { pipenv install flake8 --python pypy } else { pipenv install flake8 --python ${{ matrix.python-version }} @@ -97,7 +97,7 @@ jobs: - name: Install dependencies shell: pwsh run: | - if (${{ matrix.python-version }} -Match "pypy") { + if ("${{ matrix.python-version }}" -Match "pypy") { pipenv install flake8 --python pypy } else { pipenv install flake8 --python ${{ matrix.python-version }}