diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index a193b19..5e82e8e 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -109,6 +109,9 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.11' + cache: 'pip' + cache-dependency-path: | + requirements.txt - name: Install and init backend env: @@ -121,8 +124,7 @@ jobs: NEXTCLOUD_URL: http://localhost:8080 working-directory: ${{ env.APP_NAME }} run: | - pip install -r requirements.txt - make download-a-few-models + pip install --no-deps -r requirements.txt python3 lib/main.py & - name: Register backend