Skip to content

Fix CI issues with Python version #93

Fix CI issues with Python version

Fix CI issues with Python version #93

Workflow file for this run

on:
workflow_dispatch:
pull_request:
branches: [main, master]
push:
branches: [main, master]
name: pages
jobs:
build-sphinx-site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate HTML
run: |
python -m pip install sphinx myst_nb pydata_sphinx_theme ipykernel pandas statsmodels matplotlib
python -m pip install .
sphinx-build -d _build/doctrees docs/source _build/html
- name: Configure pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: '_build/html'
deploy:
if: contains(fromJSON('["main", "master"]'), github.ref_name) && github.event_name != 'pull_request'
needs: build-sphinx-site
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2