Skip to content

Fix how content overflow is handled #387

Fix how content overflow is handled

Fix how content overflow is handled #387

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- run: pipx run nox -s docs
- uses: actions/upload-pages-artifact@v1
with:
path: ./build/docs/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v1