Skip to content

Commit

Permalink
Get rid of deps caching
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato committed Dec 28, 2023
1 parent 056b5ed commit ce095ef
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit ce095ef

Please sign in to comment.