diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 00b2b1f..76167be 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -20,17 +20,6 @@ jobs: uses: actions/setup-python@v3 with: python-version: "3.10" - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - name: Install dependencies - run: | - python -m pip install --upgrade pip - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run app.py run: | python app.py