mirror of
https://github.com/saymrwulf/zipline.git
synced 2026-05-14 20:58:10 +00:00
BLD: Fix caching in Github Actions builds (#2767)
This commit is contained in:
parent
443d8a1610
commit
894557ad68
1 changed files with 3 additions and 2 deletions
5
.github/workflows/ci.yaml
vendored
5
.github/workflows/ci.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue