Skip to content

bump version 0.1.0 -> 0.2.0 (#20) #36

bump version 0.1.0 -> 0.2.0 (#20)

bump version 0.1.0 -> 0.2.0 (#20) #36

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Setup python environment
run: |
sudo apt install pipx
pipx ensurepath
pipx install poetry
poetry install
- name: Build docs
run: poetry run mkdocs build
- name: Publish docs
run: poetry run mkdocs gh-deploy --force