Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Dec 27, 2021
1 parent c38d8e8 commit bed8ca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit bed8ca2

Please sign in to comment.