Skip to content

Test the fix

Test the fix #574

Workflow file for this run

name: Tests
on: [pull_request, push, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
name: Check build, markup, and links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3"
- name: Install uv
uses: hynek/setup-cached-uv@5d471f055d5fc47ffc5df8d2e23485eab18e25e5
- name: Build docs
run: make html
- name: Link check
run: make linkcheck
continue-on-error: true