get rid of caching of pip dependencies for gitea
All checks were successful
Build and Deploy Backend / Run Linters and Tests (push) Successful in 24s
Build and Deploy Backend / Build and Deploy (push) Successful in 2m0s

This commit is contained in:
c-d-p
2025-04-30 21:06:17 +02:00
parent 9d821cd662
commit aec528a656

View File

@@ -38,14 +38,14 @@ jobs:
with: with:
python-version: '3.12' python-version: '3.12'
# Cache pip dependencies for faster reruns # Cache pip dependencies for faster reruns - THIS ISN'T WORKING FOR GITEA
- name: Cache pip dependencies # - name: Cache pip dependencies
uses: actions/cache@v3 # uses: actions/cache@v3
with: # with:
path: ~/.cache/pip # path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} # key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-pip- # ${{ runner.os }}-pip-
- name: Install dependencies - name: Install dependencies
working-directory: ./backend working-directory: ./backend