Skip to content

Commit

Permalink
fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Dec 27, 2021
1 parent b51496c commit c38d8e8
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/e2e-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pipenv'
- name: Install dependencies
run: pipenv install flake8 --python ${{ matrix.python-version }}

shell: pwsh
run: |
if (${{ matrix.python-version }} -Match "pypy") {
pipenv install flake8 --python pypy
} else {
pipenv install flake8 --python ${{ matrix.python-version }}
}
python-pip-dependencies-caching-path:
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -90,4 +95,10 @@ jobs:
cache: 'pipenv'
cache-dependency-path: '**/requirements-linux.txt'
- name: Install dependencies
run: pipenv install flake8 --python ${{ matrix.python-version }}
shell: pwsh
run: |
if (${{ matrix.python-version }} -Match "pypy") {
pipenv install flake8 --python pypy
} else {
pipenv install flake8 --python ${{ matrix.python-version }}
}

0 comments on commit c38d8e8

Please sign in to comment.