Skip to content

Commit

Permalink
move debug session up
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Aug 25, 2024
1 parent dc4abff commit 17fe6a3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down
15 changes: 7 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down

0 comments on commit 17fe6a3

Please sign in to comment.