Skip to content

fix(lint): remove unused imports flagged by ruff #3

fix(lint): remove unused imports flagged by ruff

fix(lint): remove unused imports flagged by ruff #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install
run: uv sync --all-extras
- name: Lint
run: uv run ruff check
- name: Type check
run: uv run mypy src
- name: Test
run: uv run pytest