Skip to content

Commit d358f9e

Browse files
fix check
1 parent 1e52de4 commit d358f9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/e2e-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
mv ./__tests__/data/Pipfile.lock .
5656
mv ./__tests__/data/Pipfile .
57-
if (${{ matrix.python-version }} -Match "pypy") {
57+
if ("${{ matrix.python-version }}" -Match "pypy") {
5858
pipenv install --keep-outdated --python ${{ matrix.python-version }}
5959
} else {
6060
pipenv install --keep-outdated --python pypy
@@ -124,7 +124,7 @@ jobs:
124124
run: |
125125
mv ./__tests__/data/Pipfile.lock .
126126
mv ./__tests__/data/Pipfile .
127-
if (${{ matrix.python-version }} -Match "pypy") {
127+
if ("${{ matrix.python-version }}" -Match "pypy") {
128128
pipenv install --keep-outdated --python ${{ matrix.python-version }}
129129
} else {
130130
pipenv install --keep-outdated --python pypy

0 commit comments

Comments
 (0)