Skip to content

Commit 7dc0423

Browse files
disable caching in workflows
1 parent 0d846b8 commit 7dc0423

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/lint_test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@ jobs:
6161
# changed, we create a cache key that is a composite of those states.
6262
#
6363
# 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') }}"
7272

7373
# Install our dependencies if we did not restore a dependency cache
7474
- name: Install dependencies using poetry
75-
if: steps.python_cache.outputs.cache-hit != 'true'
75+
# if: steps.python_cache.outputs.cache-hit != 'true'
7676
run: |
7777
pip install poetry
7878
poetry install --no-interaction --no-ansi

0 commit comments

Comments
 (0)