Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,22 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.13'
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: '3.1.11' # The pandoc version to download (if necessary) and use.
- run: echo "# Test" | pandoc -t html
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
mkdir poetry
python -m venv ./poetry
./poetry/bin/python -m pip install --upgrade pip
./poetry/bin/pip install poetry==2.2.1
./poetry/bin/poetry install --with dev
- name: Sphinx build
run: |
poetry run sphinx-build docs _build
./poetry/bin/poetry run sphinx-build docs _build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
Expand Down