Peter Bittner 2025-07-09 13:44:07 +02:00
parent 110d5bf361
commit e0f95bc86b
2 changed files with 6 additions and 27 deletions

View file

@ -23,19 +23,9 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: release-${{ hashFiles('**/setup.py') }}
restore-keys: |
release-
cache: pip
cache-dependency-path: |
**/pyproject.toml
- name: Install dependencies
run: |

View file

@ -39,20 +39,9 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
${{ matrix.python-version }}-v1-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ matrix.python-version }}-v1-
cache: pip
cache-dependency-path: |
**/pyproject.toml
- name: Install dependencies
run: |