feat(build): use poetry and organise modules #376
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |