Skip to content

use uv for tests, run mypy #19

use uv for tests, run mypy

use uv for tests, run mypy #19

Workflow file for this run

name: ci
on:
push:
jobs:
test:
name: Run lint and tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v5
- run: make lint
- run: make test