Skip to content

fix: normalize range validation for light, cover, and valve domains #96

fix: normalize range validation for light, cover, and valve domains

fix: normalize range validation for light, cover, and valve domains #96

Workflow file for this run

name: Docs
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- run: sudo apt-get update && sudo apt-get install -y graphviz
- run: pip install -e ".[docs]"
- run: python tools/generate_diagrams.py
- run: mkdocs build --strict
- if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v5
with:
path: site/
deploy:
if: github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- id: deploy
uses: actions/deploy-pages@v5