Skip to content

add

add #1

Workflow file for this run

name: Build docs

Check failure on line 1 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yml

Invalid workflow file

(Line: 27, Col: 14): A mapping was not expected
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup application tooling
uses: jdx/mise-action@v2
- name: Cache dependencies
uses: actions/cache@v4
with:
path: .venv
key: {{ "v0-${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock')}}" }}
restore-keys: |
{{ "v0-${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock')}}" }}
- name: Build docs
run: |
uv run mkdocs gh-deploy