Skip to content

update test

update test #7

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Change this to your default branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --with dev
- name: Build Sphinx documentation
run: |
cd docs
make html
- name: Deploy to GitHub Pages
run: |
poetry run ghp-import -n -p -f docs/_build/html