Skip to content

enh: clarify CF metadata scope in GeoZarr mini-spec and update attribute definitions #216

enh: clarify CF metadata scope in GeoZarr mini-spec and update attribute definitions

enh: clarify CF metadata scope in GeoZarr mini-spec and update attribute definitions #216

Workflow file for this run

name: Documentation
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths:
- "docs/**"
jobs:
build-docs:
permissions:
contents: write
pages: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
with:
version: "0.8.4"
python-version: "3.13"
enable-cache: false
- name: Install dependencies
run: uv sync --group docs
- name: Build docs
if: github.event_name == 'pull_request'
run: uv run -- mkdocs build
- name: Deploy docs
if: github.event_name == 'push'
run: uv run -- mkdocs gh-deploy --force