Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Update black requirement from ^22.1 to ^23.3 #128

Update black requirement from ^22.1 to ^23.3

Update black requirement from ^22.1 to ^23.3 #128

Workflow file for this run

name: Doc
on:
push:
branches:
- main
- develop
- release/*
pull_request:
branches:
- main
- develop
- release/*
workflow_dispatch:
jobs:
doc:
name: Doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install
run: pip install poetry && poetry install
- run: make doc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html