From d358f9e3d736263647a0848999f287bf1f66d499 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Wed, 29 Jun 2022 20:28:20 +0200 Subject: [PATCH] fix check --- .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 0540097..c580dca 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -54,7 +54,7 @@ jobs: run: | mv ./__tests__/data/Pipfile.lock . mv ./__tests__/data/Pipfile . - if (${{ matrix.python-version }} -Match "pypy") { + if ("${{ matrix.python-version }}" -Match "pypy") { pipenv install --keep-outdated --python ${{ matrix.python-version }} } else { pipenv install --keep-outdated --python pypy @@ -124,7 +124,7 @@ jobs: run: | mv ./__tests__/data/Pipfile.lock . mv ./__tests__/data/Pipfile . - if (${{ matrix.python-version }} -Match "pypy") { + if ("${{ matrix.python-version }}" -Match "pypy") { pipenv install --keep-outdated --python ${{ matrix.python-version }} } else { pipenv install --keep-outdated --python pypy