Skip to content

Commit 18f2bfd

Browse files
committed
chore: remove caching from typing tests
1 parent cb314db commit 18f2bfd

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/test.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,14 @@ jobs:
3939
poetry config virtualenvs.create true --local
4040
poetry config virtualenvs.in-project true --local
4141
42-
- name: Cache dependencies
43-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
44-
with:
45-
path: ./.venv
46-
key: venv-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
47-
restore-keys: |
48-
venv-${{ runner.os }}-py${{ matrix.python-version }}-
42+
# Don't use cache
43+
# - name: Cache dependencies
44+
# uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
45+
# with:
46+
# path: ./.venv
47+
# key: venv-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
48+
# restore-keys: |
49+
# venv-${{ runner.os }}-py${{ matrix.python-version }}-
4950

5051
- name: Install package
5152
run: poetry install --all-extras

0 commit comments

Comments
 (0)