Skip to content

fix: Correct scipy fallback for sublevel filtration and lower coverag… #37

fix: Correct scipy fallback for sublevel filtration and lower coverag…

fix: Correct scipy fallback for sublevel filtration and lower coverag… #37

Workflow file for this run

name: Documentation
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: write
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bundle Markdown docs
run: |
mkdir -p site
cp -r docs site/
cp README.md site/
cp CLAUDE.md site/
cp CONTRIBUTING.md site/
- name: Upload documentation artifacts
uses: actions/upload-artifact@v4
with:
name: documentation
path: site/
- name: Deploy to GitHub Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site/
publish_branch: gh-pages