Skip to content

Commit

Permalink
Merge pull request #305 from idefix-code/docCI
Browse files Browse the repository at this point in the history
MNT: test the documentation generation workflow
  • Loading branch information
glesur authored Dec 23, 2024
2 parents feae278 + bfa54f7 commit 2d2dcd0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/idefix-ci-doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Idefix CIs
on:
workflow_dispatch:
push:
branches:
- master
- develop
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'


jobs:
ReadTheDocs:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: install doxygen
run: sudo apt-get install -y doxygen
- name: install python dependencies
run: python -m pip install --exists-action=w --no-cache-dir -r doc/python_requirements.txt
- name: compile documentation
run: python -m sphinx -T -b html -d _build/doctrees -D language=en doc/source doc/html

0 comments on commit 2d2dcd0

Please sign in to comment.