Skip to content

fix(deps): update python to v3.12.6 #210

fix(deps): update python to v3.12.6

fix(deps): update python to v3.12.6 #210

Workflow file for this run

name: Doc
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y python3-sphinx pandoc
python -m pip install --upgrade pip
python -m pip install --upgrade poetry>=1.2.0
poetry install --with docs
- name: Build Sphinx doc
run: |
poetry run make -C docs html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html