Skip to content

docs: add social preview image #20

docs: add social preview image

docs: add social preview image #20

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [master]
jobs:
lint-and-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v8.2.0
with:
enable-cache: true
- run: uv sync --all-extras
- name: ruff format
run: uv run ruff format --check src tests
- name: ruff check
run: uv run ruff check src tests
- name: pytest (no docker)
run: uv run pytest -v -m "not docker"