Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/bbannier/fix-docs-ci-again'
Browse files Browse the repository at this point in the history
* origin/topic/bbannier/fix-docs-ci-again:
  Fix installation of Python packages in generate docs CI job again
  • Loading branch information
ckreibich committed Oct 18, 2024
2 parents a0bb802 + bd30042 commit c82a216
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,22 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os:
- 'ubuntu-22.04'
- 'macos-latest'
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Fetch Dependencies
run: sudo pip3 install --break-system-packages -r requirements.txt
run: pip3 install -r requirements.txt
- name: Generate Docs
run: make SPHINXOPTS="-W --keep-going"

0 comments on commit c82a216

Please sign in to comment.