Skip to content

Spatial Metrics (CSV) Export #286

Spatial Metrics (CSV) Export

Spatial Metrics (CSV) Export #286

Workflow file for this run

name: docs-build
on:
pull_request:
branches:
- main
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
run: |
python -m pip install --upgrade pip
pip install uv
- name: Install dependencies
run: |
uv pip install --no-cache-dir Cython
uv pip install -r requirements.txt -r requirements_dev.txt
uv pip install .
env:
UV_SYSTEM_PYTHON: 1
- name: Discover typos with codespell
run: codespell --skip="*.csv,*.geojson,*.json,*.js,*.html,*cff,*.pdf,./.git" --ignore-words-list="aci,acount,hist"
- name: PKG-TEST
run: |
python -m unittest discover tests/
- name: Build docs
run: |
mkdocs build