Disable CI Python cache

Troubleshooting issue with Pipenv Python executable discovery.
This commit is contained in:
Christopher C. Wells 2021-07-19 20:51:23 -07:00 committed by Christopher Charbonneau Wells
parent be3443de35
commit 371d6f50cd
1 changed files with 8 additions and 8 deletions

View File

@ -29,14 +29,14 @@ jobs:
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- name: Cache Python dependencies
id: cache-pipenv
uses: actions/cache@v2
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-python-${{ matrix.python-version }}-pipenv-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-python-${{ matrix.python-version }}-pipenv-
# - name: Cache Python dependencies
# id: cache-pipenv
# uses: actions/cache@v2
# with:
# path: ~/.local/share/virtualenvs
# key: ${{ runner.os }}-python-${{ matrix.python-version }}-pipenv-${{ hashFiles('**/requirements.txt') }}
# restore-keys: |
# ${{ runner.os }}-python-${{ matrix.python-version }}-pipenv-
- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: |