feat/ci-improvement #4

Merged
zwitschi merged 32 commits from fest/ci-improvement into main 2025-10-28 09:07:57 +01:00
Showing only changes of commit e37488bcf6 - Show all commits

View File

@@ -38,13 +38,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache pip dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements-test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# - name: Cache pip dependencies
# uses: actions/cache@v4
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements-test.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-
- name: Prepare Python environment
uses: ./.gitea/actions/setup-python-env