Skip to content

Add serve command for interactive viz #6

Add serve command for interactive viz

Add serve command for interactive viz #6

Workflow file for this run

name: Deploy docs
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'microscape/**'
workflow_dispatch:
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 and dependencies
run: pip install mkdocs-material "mkdocstrings[python]"
- name: Install microscape
run: pip install -e .
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force