Skip to content

Commit b55c63c

Browse files
Remove all caching that could explain the problem
1 parent 363d2a3 commit b55c63c

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
@@ -76,15 +74,7 @@ jobs:
7674
run: |
7775
python -m poetry config virtualenvs.in-project true
7876
79-
- name: Cache the virtualenv
80-
id: poetry-dependencies-cache
81-
uses: actions/cache@v3
82-
with:
83-
path: ./.venv
84-
key: ${{ runner.os }}-venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
85-
8677
- name: Install dev dependencies
87-
if: steps.poetry-dependencies-cache.outputs.cache-hit != 'true'
8878
run: |
8979
python -m poetry install --only=dev
9080

0 commit comments

Comments
 (0)