Skip to content

Commit 0822c06

Browse files
Remove all caching that could explain the problem
1 parent e512b6d commit 0822c06

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- name: Set up Python
1515
uses: actions/setup-python@v5
16-
with:
17-
cache: "pip"
1816
- name: Install pypa/build
1917
run: >-
2018
python3 -m pip install --user
@@ -78,15 +76,7 @@ jobs:
7876
run: |
7977
python -m poetry config virtualenvs.in-project true
8078
81-
- name: Cache the virtualenv
82-
id: poetry-dependencies-cache
83-
uses: actions/cache@v3
84-
with:
85-
path: ./.venv
86-
key: ${{ runner.os }}-venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
87-
8879
- name: Install dev dependencies
89-
if: steps.poetry-dependencies-cache.outputs.cache-hit != 'true'
9080
run: |
9181
python -m poetry install --only=dev
9282

0 commit comments

Comments
 (0)