Skip to content

add: pandas import changed - issue #9

add: pandas import changed - issue

add: pandas import changed - issue #9

Workflow file for this run

name: Generate Documentation
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy pandas pdoc
- name: Generate documentation
run: |
PYTHONPATH=./src pdoc ts_shape --output-dir docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs