Skip to content

Make inline code strings stand out better. #21

Make inline code strings stand out better.

Make inline code strings stand out better. #21

Workflow file for this run

---
name: Test
"on":
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Run tests
run: uv run --python=${{ matrix.python-version }} --group=dev pytest