diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9ec6b13..4fa14d5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -106,22 +106,22 @@ jobs: path: dist/ if-no-files-found: error - # pip_install: - # name: Install PyPI - # runs-on: "ubuntu-latest" - # needs: [pip_build] - # steps: - # - uses: actions/setup-python@v5 - # with: - # python-version: ${{ env.PYTHON_VERSION }} - # - uses: actions/download-artifact@v4 - # with: - # name: pip - # path: dist/ - # - name: Install package - # run: python -m pip install dist/*.whl - # - name: Test package - # run: python -c "import $PACKAGE; print($PACKAGE.__version__)" + pip_install: + name: Install PyPI + runs-on: "ubuntu-latest" + needs: [pip_build] + steps: + - uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + - uses: actions/download-artifact@v4 + with: + name: pip + path: dist/ + - name: Install package + run: python -m pip install dist/*.whl + - name: Test package + run: python -c "import $PACKAGE; print($PACKAGE.__version__)" # # pip_publish: # name: Publish PyPI