diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 076cc0e..01e2b38 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,20 +33,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v1 - id: depcache - with: - path: deps - key: requirements-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }} - - - name: Download dependencies - if: steps.depcache.outputs.cache-hit != 'true' - run: | - pip download --dest=deps -r requirements.txt - - name: Install dependencies run: | - pip install -U --no-index --find-links=deps deps/* + pip install -r requirements.txt - name: Run tests run: |