Skip to content

Bump starlette from 0.39.2 to 0.40.0 #418

Bump starlette from 0.39.2 to 0.40.0

Bump starlette from 0.39.2 to 0.40.0 #418

Workflow file for this run

name: Docs Build Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry"
- name: Install package and dependencies
run: |
poetry install --with docs --without dev
- name: Test docs build
run: |
cd docs
poetry run make html