diff --git a/.github/actions/pkg-install/action.yml b/.github/actions/pkg-install/action.yml index 7e4ee1d584e3b..3698dd82c11df 100644 --- a/.github/actions/pkg-install/action.yml +++ b/.github/actions/pkg-install/action.yml @@ -33,11 +33,10 @@ runs: python -c "import ${{ env.PKG_IMPORT }}; print(${{ env.PKG_IMPORT }}.__version__)" shell: bash -# FIXME !!! -# - name: Install package - archive -# working-directory: ${{ inputs.pkg-folder }} -# run: | -# pip install ${PKG_SOURCE} ${{ inputs.pip-flags }} -# pip list | grep lightning -# python -c "import ${{ env.PKG_IMPORT }}; print(${{ env.PKG_IMPORT }}.__version__)" -# shell: bash + - name: Install package - archive + working-directory: ${{ inputs.pkg-folder }} + run: | + pip install ${PKG_SOURCE} ${{ inputs.pip-flags }} + pip list | grep lightning + python -c "import ${{ env.PKG_IMPORT }}; print(${{ env.PKG_IMPORT }}.__version__)" + shell: bash