Skip to content

Bug fixed in friedman dataframe #44

Bug fixed in friedman dataframe

Bug fixed in friedman dataframe #44

Workflow file for this run

name: Deploy Phinx Documentation to GitHub Pages
on:
# Execute the workflow when pushing to the main branch
push:
branches: ["main"]
# Allows manual execution from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Construction job
build:
runs-on: ubuntu-latest
steps:
# Clone repository
- name: Checkout repository
uses: actions/checkout@v4
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[docs]
# Build HTML documentation
- name: Build HTML documentation
run: |
cd docs
make html
# Upload artifact
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/_build/html # Path to the HTML documentation
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4