Skip to content

feat(build): use poetry and organise modules #381

feat(build): use poetry and organise modules

feat(build): use poetry and organise modules #381

Workflow file for this run

name: docs
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Poetry
run: pipx install poetry
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: poetry
- name: Install Python dependencies
run: poetry install --all-extras
- name: Build documentation
run: make docs