mirror of https://github.com/snachodog/mybuddy.git
Disable CI Python cache
Troubleshooting issue with Pipenv Python executable discovery.
This commit is contained in:
parent
be3443de35
commit
371d6f50cd
|
@ -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: |
|
||||||
|
|
Loading…
Reference in New Issue