Skip to content

Update mkdocs.yml

Update mkdocs.yml #59

Workflow file for this run

name: Docs dry build
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
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.x
cache: "poetry"
cache-dependency-path: poetry.lock
- name: Install dependencies
run: poetry install --no-root
- name: Buld docs
run: poetry run mkdocs build