Skip to content

Fix stubs for ainject() and from_() #620

Fix stubs for ainject() and from_()

Fix stubs for ainject() and from_() #620

Workflow file for this run

name: Run tests
on: [ push, pull_request, workflow_dispatch ]
permissions:
contents: read
jobs:
tests:
name: "Tests on python ${{matrix.python-version}}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5.4.0
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
uv sync --dev
- name: Run tests
run: |
uv run pytest