Skip to content

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

feat(build): use poetry and organise modules

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

Workflow file for this run

on:
# TODO: disabled while refactoring the build/test pipeline - fix me before merging!
# push:
# branches: [main]
# pull_request:
# branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: poetry
- name: Install Python dependencies
run: poetry install --all-extras
- name: Build documentation
run: make docs