File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -61,18 +61,18 @@ jobs:
61
61
# changed, we create a cache key that is a composite of those states.
62
62
#
63
63
# Only when the context is exactly the same, we will restore the cache.
64
- - name : Python Dependency Caching
65
- uses : actions/cache@v2
66
- id : python_cache
67
- with :
68
- path : ${{ env.PYTHONUSERBASE }}
69
- key : " python-0-${{ runner.os }}-${{ env.PYTHONUSERBASE }}-\
70
- ${{ steps.python.outputs.python-version }}-\
71
- ${{ hashFiles('./pyproject.toml', './poetry.lock') }}"
64
+ # - name: Python Dependency Caching
65
+ # uses: actions/cache@v2
66
+ # id: python_cache
67
+ # with:
68
+ # path: ${{ env.PYTHONUSERBASE }}
69
+ # key: "python-0-${{ runner.os }}-${{ env.PYTHONUSERBASE }}-\
70
+ # ${{ steps.python.outputs.python-version }}-\
71
+ # ${{ hashFiles('./pyproject.toml', './poetry.lock') }}"
72
72
73
73
# Install our dependencies if we did not restore a dependency cache
74
74
- name : Install dependencies using poetry
75
- if : steps.python_cache.outputs.cache-hit != 'true'
75
+ # if: steps.python_cache.outputs.cache-hit != 'true'
76
76
run : |
77
77
pip install poetry
78
78
poetry install --no-interaction --no-ansi
You can’t perform that action at this time.
0 commit comments