Skip to content

Remove repr in tests (#96) #609

Remove repr in tests (#96)

Remove repr in tests (#96) #609

Workflow file for this run

name: Docs
on:
push:
branches:
- main
jobs:
docs:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install -U pip install wheel setuptools
python setup.py download
pip install -e ".[cli,docs]"
- name: Copy README.md
run: |
cp README.md docs/index.md
- run: mkdocs build
- name: Github Pages Deploy
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./site
force_orphan: true