From 73ac41d8c5a84e6dad0a8f2fe4f5d4231f88af5b Mon Sep 17 00:00:00 2001 From: rkishony Date: Wed, 22 May 2024 15:58:32 -0400 Subject: [PATCH] debug build --- .github/workflows/wheels.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index e16d51de..353ed735 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -55,12 +55,17 @@ jobs: python -m pip install . python -m pip install jupyterlab==3.1 - jupyter labextension list 2>&1 | grep -ie "pyquibbler-labextension.*OK" + echo "Listing Jupyter Lab Extensions" + jupyter labextension list + + echo "Running Browser Check" python -m jupyterlab.browser_check + echo "Building Wheel" python -m pip wheel . -w ./dist --no-deps - - uses: actions/upload-artifact@v3 + - name: Upload build artifacts + uses: actions/upload-artifact@v3 with: name: pyquibbler_labextension path: ./pyquibbler-labextension/dist/*.whl