Skip to content

use uv for tests, run mypy #22

use uv for tests, run mypy

use uv for tests, run mypy #22

Workflow file for this run

name: ci
on:
push:
permissions:
contents: read
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@v6
- run: make lint
- run: make test