Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Merge pull request #22 from dracos/11 #33

Merge pull request #22 from dracos/11

Merge pull request #22 from dracos/11 #33

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