Skip to content

fix: properly export zcm_peer in tools/__init__.py and wire into devd… #11

fix: properly export zcm_peer in tools/__init__.py and wire into devd…

fix: properly export zcm_peer in tools/__init__.py and wire into devd… #11

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install mkdocs
run: |
pip install mkdocs-material pymdown-extensions
- name: Build docs
run: mkdocs build --strict
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: mkdocs gh-deploy --force