Spaces:
Running
Running
| name: docs | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| paths: | |
| - 'pysr/**' | |
| - '.github/workflows/docs.yml' | |
| - 'docs/**' | |
| - 'setup.py' | |
| - 'README.md' | |
| - 'mkdocs.yml' | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| cache: pip | |
| - name: "Install packages for docs building" | |
| run: pip install -r docs/requirements.txt | |
| - name: "Install PySR" | |
| run: pip install . && python -c 'import pysr' | |
| - name: "Build API docs" | |
| run: cd docs && ./gen_docs.sh | |
| - name: "Deploy documentation" | |
| run: mkdocs gh-deploy --force | |