From 17fe6a39d31ed8b8dcc069c40eb3dad7133f6945 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Sat, 24 Aug 2024 18:07:18 -0700 Subject: [PATCH] move debug session up --- .github/workflows/lint.yml | 12 ++++++------ .github/workflows/test.yml | 15 +++++++-------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0c1eb39..34fed7a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -30,12 +30,6 @@ jobs: with: virtualenvs-create: true virtualenvs-in-project: true - - name: Install Dependencies - run: | - sudo apt-get install libopenblas-dev - poetry config virtualenvs.in-project true - poetry run pip install --upgrade pip - poetry install - name: Install Emacs if: ${{ github.event.inputs.debug == 'on' }} run: | @@ -46,6 +40,12 @@ jobs: with: detached: true timeout-minutes: 60 + - name: Install Dependencies + run: | + sudo apt-get install libopenblas-dev + poetry config virtualenvs.in-project true + poetry run pip install --upgrade pip + poetry install - name: Run Static Analysis run: | source .venv/bin/activate diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef54abd..2469a93 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,14 +47,6 @@ jobs: with: virtualenvs-create: true virtualenvs-in-project: true - - name: Install Release Dependencies - run: | - sudo apt-get install libopenblas-dev - poetry config virtualenvs.in-project true - poetry run pip install --upgrade pip - poetry install -E html -E png -E pdf - poetry run pip install -U "Sphinx~=${{ matrix.sphinx-version }}" - - name: Install Emacs if: ${{ github.event.inputs.debug == 'on' }} run: | @@ -65,6 +57,13 @@ jobs: with: detached: true timeout-minutes: 60 + - name: Install Release Dependencies + run: | + sudo apt-get install libopenblas-dev + poetry config virtualenvs.in-project true + poetry run pip install --upgrade pip + poetry install -E html -E png -E pdf + poetry run pip install -U "Sphinx~=${{ matrix.sphinx-version }}" - name: Run Unit Tests run: |