Skip to content

Commit

Permalink
Fix sphinx installation in GitHub Actions (#953)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua committed Jul 30, 2024
1 parent 75de36f commit 1842470
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: install dependencies
run: |
pip install ".[test]"
- name: install sphinx from PyPI or from git
run: |
if echo "${{ matrix.sphinx-version }}"|grep -q git; then
Expand All @@ -51,9 +55,5 @@ jobs:
pip install -Iv Sphinx==${{ matrix.sphinx-version }}
fi
- name: install dependencies
run: |
pip install ".[test]"
- name: run the unit tests
run: make dev-test

0 comments on commit 1842470

Please sign in to comment.