Skip to content

add workflow call, reporting #30

add workflow call, reporting

add workflow call, reporting #30

Workflow file for this run

# # Publish docs on main branch
# name: build and publish docs
# # Controls when the action will run.
# on:
# push:
# branches: [main]
# # Allows you to run this workflow manually from the Actions tab
# workflow_dispatch:
# # A workflow run is made up of one or more jobs that can run sequentially or in parallel
# jobs:
# # This workflow contains a single job called "release"
# release:
# name: Create Release
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-versions: [3.11, 3.12]
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-versions }}
# - name: Install Poetry
# uses: snok/install-poetry@v1
# - name: build documentation
# run: |
# poetry install --with dev
# poetry run mkdocs build
# - name: deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./site