Skip to content

doc: Add DeepWiki badge in README #2

doc: Add DeepWiki badge in README

doc: Add DeepWiki badge in README #2

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Run linter and static analysis
run: uv run pre-commit run --all-files
- name: Run tests
run: uv run pytest