Skip to content

fix: preserve Sphinx roles during inline-code conversion #5

fix: preserve Sphinx roles during inline-code conversion

fix: preserve Sphinx roles during inline-code conversion #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pandoc
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Install dependencies
run: uv sync --all-groups
- name: Lint
run: uv run ruff check src tests
- name: Format check
run: uv run ruff format --check src tests
- name: Test
run: uv run pytest --cov