Skip to content

Build docs on push

Build docs on push #1

Workflow file for this run

name: Deploy
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies and build
run: |
python3 -m pip install -U poetry
python3 -m poetry install
python3 -m poetry run mkdocs build