Skip to content

build(python): update supported Python versions: 3.9 - 3.13 (#36) #17

build(python): update supported Python versions: 3.9 - 3.13 (#36)

build(python): update supported Python versions: 3.9 - 3.13 (#36) #17

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
- name: Setup cache
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Restore cache
uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Deploy documentation
run: poetry run mkdocs gh-deploy --force