Skip to content

fix(tooling): typecheck on source tree; not on package #2

fix(tooling): typecheck on source tree; not on package

fix(tooling): typecheck on source tree; not on package #2

Workflow file for this run

name: Publish 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: 24, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e@v4'
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e@v4
with:
enable-cache: true
- name: Install dependencies to venv
run: make _pyspec
- name: Build docs
run: make _copy_docs
- name: Deploy
run: uv run mkdocs gh-deploy --force