From 85c48e6d72db9ac5d0d0bd5236232a9ffc1286aa Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Fri, 13 Oct 2023 13:49:42 -0400 Subject: [PATCH] install python deps --- .github/workflows/pull-request.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index f79d6ce17..b4fad5e30 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -692,11 +692,9 @@ jobs: run: working-directory: ./extensions/jupyterlab/connect_jupyterlab steps: - - - name: Checkout + - name: Checkout uses: actions/checkout@v3 - - - name: Setup Just + - name: Setup Just uses: extractions/setup-just@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -709,9 +707,9 @@ jobs: run: python -m pip install -U "jupyterlab>=4.0.0,<5" - name: Install JS dependencies run: jlpm install - - - name: Validate extension code + - name: Install connect_jupyterlab package + run: just install + - name: Validate extension code run: just validate - - - name: Test extension code + - name: Test extension code run: just test