Skip to content

Add option to preserve the median when morphing #200

Add option to preserve the median when morphing

Add option to preserve the median when morphing #200

Workflow file for this run

# This workflow runs the pre-commit hooks on all files and confirms the docs can be built.
#
# Author: Stefanie Molin
name: Check PR
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
# Check that docs can be built
docs:
runs-on: ubuntu-latest
name: Build docs
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install '.[docs]'
- name: Sphinx build
run: |
cd docs
make html