Skip to content

Update version and format. #17

Update version and format.

Update version and format. #17

Workflow file for this run

name: Github Pages Documentation
on:
push:
branches:
- main
paths:
- "elpis/**"
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.1.13"
- name: Poetry install
run: |
poetry install
- name: Build documentation
run: poetry run pdoc --html --output-dir out elpis
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out/elpis