Skip to content

Remove all references to content.md - fragments are the way #9

Remove all references to content.md - fragments are the way

Remove all references to content.md - fragments are the way #9

Workflow file for this run

name: Validate Topics
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Install dependencies
run: |
uv sync --extra dev
- name: Run validation
run: |
uv run python scripts/validate.py
- name: Run tests
run: |
uv run pytest tests/ -v