Skip to content

Commit

Permalink
BLD: Fix caching in Github Actions builds (quantopian#2767)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerrymanoim authored Sep 8, 2020
1 parent 443d8a1 commit 894557a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{matrix.python-version}}-${{ hashFiles('$PIP_CONSTRAINT') }}
key: ${{ runner.os }}-pip-py${{matrix.python-version}}-${{ hashFiles(env.PIP_CONSTRAINT) }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-pip-py${{matrix.python-version}}-
- name: Install requirements
run: |
python -m pip install wheel
python -m pip install -r etc/requirements_build.in
python -m pip install --no-binary=bcolz -e .[all] -r etc/requirements_blaze.in
- name: Run tests
Expand Down

0 comments on commit 894557a

Please sign in to comment.