Thanks to visit codestin.com
Credit goes to github.com

Skip to content

docs: add json to full text search document #2862

docs: add json to full text search document

docs: add json to full text search document #2862

Workflow file for this run

name: Check docs
on:
push:
branches: ["main"]
pull_request:
paths:
- docs/**
- .github/workflows/docs-check.yml
env:
RUSTFLAGS: "-C debuginfo=0"
# according to: https://matklad.github.io/2021/09/04/fast-rust-builds.html
# CI builds are faster with incremental disabled.
CARGO_INCREMENTAL: "0"
jobs:
# Single deploy job since we're just deploying
check-docs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "docs/pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Check links
working-directory: docs
run: |
uv run mkdocs-linkcheck src