mirror of https://github.com/nucypher/nucypher.git
Always install code updates even if there was a python dependency cache hit.
Split pip upgrade and package installation.pull/3272/head
parent
4b978025a2
commit
b9bfce9d81
|
@ -39,11 +39,12 @@ jobs:
|
||||||
path: ${{ env.pythonLocation }}
|
path: ${{ env.pythonLocation }}
|
||||||
key: ${{ runner.os }}-pip-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('dev-requirements.txt', 'requirements.txt') }}
|
key: ${{ runner.os }}-pip-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('dev-requirements.txt', 'requirements.txt') }}
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Upgrade pip
|
||||||
if: steps.python_cache.outputs.cache-hit != 'true'
|
if: steps.python_cache.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: python -m pip install --upgrade pip
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install .[dev]
|
- name: Install packages (incl. updated code)
|
||||||
|
run: pip install .[dev]
|
||||||
|
|
||||||
- name: Check CLI Entrypoint
|
- name: Check CLI Entrypoint
|
||||||
run: nucypher --help
|
run: nucypher --help
|
||||||
|
|
Loading…
Reference in New Issue