Skip to content

Document signal handling #17

Document signal handling

Document signal handling #17

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: uv.lock
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Run tests
run: |
uv run ruff check
uv run mypy .
uv run pytest