Test caching of deps in CI

This commit is contained in:
squidfunk 2023-09-22 19:47:48 +02:00
parent 64827f409b
commit adc59cad33
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF
2 changed files with 6 additions and 0 deletions

View File

@ -102,6 +102,9 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
cache-dependency-path: |
pyproject.toml
requirements.txt
- name: Set up Python dependencies
run: pip install --upgrade build twine

View File

@ -53,6 +53,9 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
cache-dependency-path: |
pyproject.toml
requirements.txt
- name: Set up build cache
uses: actions/cache/restore@v3