Skip to content

changed method return protocol to tuple=extend, list=push; added fore… #27

changed method return protocol to tuple=extend, list=push; added fore…

changed method return protocol to tuple=extend, list=push; added fore… #27

Workflow file for this run

name: Publish Documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-sequence-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-sequence-
- run: pip install '.[docs]'
- run: mkdocs gh-deploy --force