Skip to content

chore: python 3.11 support #128

chore: python 3.11 support

chore: python 3.11 support #128

Workflow file for this run

name: build
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry --version
- name: Install dependencies
run: poetry install --no-interaction
- name: Build HTML
working-directory: ./docs
run: poetry run make html