Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/actions/pkg-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ runs:
pip install *.tar.gz ${{ inputs.pip-flags }}
pip list | grep lightning
python -c "import ${PKG_NAME} ; print(${PKG_NAME}.__version__)"
pip uninstall -y ${PKG_NAME}
shell: bash

- name: Install | Uninstall package - wheel
Expand All @@ -40,5 +39,4 @@ runs:
pip install *.whl ${{ inputs.pip-flags }}
pip list | grep lightning
python -c "import ${PKG_NAME} ; print(${PKG_NAME}.__version__)"
pip uninstall -y ${PKG_NAME}
shell: bash
6 changes: 6 additions & 0 deletions .github/workflows/ci-pkg-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ jobs:
pkg-name: "lightning"
pip-flags: "-U --pre --find-links ../pypi/"

- name: Run CLI
run: python -m lightning --version

install-meta-pypi:
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -143,3 +146,6 @@ jobs:
with:
pkg-name: "lightning"
pip-flags: "-U --pre --find-links ../pypi/"

- name: Run CLI
run: python -m lightning --version