Skip to content

build(deps-dev): bump black from 23.7.0 to 23.9.1 (#303) #362

build(deps-dev): bump black from 23.7.0 to 23.9.1 (#303)

build(deps-dev): bump black from 23.7.0 to 23.9.1 (#303) #362

Workflow file for this run

name: Build docs
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Build
run: |
pip install -U -r docs/requirements.txt
pip install ".[fsspec]"
sphinx-build docs dist/site -b dirhtml -a
- name: Publish
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist/site