adding pyvista to optionals as a viz module. Still need to move matpl… #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Documentation | |
# on: | |
# push: | |
# branches: main | |
# permissions: | |
# contents: write | |
# jobs: | |
# docs: | |
# runs-on: ubuntu-latest | |
# container: mrbuche/exodus | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: actions/setup-python@v5 | |
# with: | |
# python-version: '3.11' | |
# - name: Install | |
# run: | | |
# python -m venv venv | |
# . venv/bin/activate | |
# pip install .[cpu,docs] | |
# cd docs | |
# sphinx-apidoc -o source/ ../pancax -P | |
# make html | |
# - name: Deploy | |
# uses: peaceiris/actions-gh-pages@v3 | |
# with: | |
# publish_branch: gh-pages | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# publish_dir: docs/build/html | |
# force_orphan: true |