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