Skip to content

chore: bump version to 1.3.1 #86

chore: bump version to 1.3.1

chore: bump version to 1.3.1 #86

Workflow file for this run

name: Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "mkdocs.yml"
- ".readthedocs.yaml"
pull_request:
branches:
- main
paths:
- "docs/**"
- "mkdocs.yml"
- ".readthedocs.yaml"
workflow_dispatch:
permissions:
contents: read
jobs:
build-docs:
name: Build docs (mkdocs)
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
- name: Build docs
run: mkdocs build --strict