Skip to content

New M3's Tool-Agnostic Highly-Typed Architecture: Chaining-Method API Style #121

New M3's Tool-Agnostic Highly-Typed Architecture: Chaining-Method API Style

New M3's Tool-Agnostic Highly-Typed Architecture: Chaining-Method API Style #121

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install UV and Python
uses: astral-sh/setup-uv@v5
with:
version: "latest"
python-version: ${{ matrix.python-version }}
- name: Create virtual environment
run: uv venv
- name: Install dependencies
run: |
uv sync --all-groups
uv add pytest==7.4.3
- name: Run tests
run: uv run pytest -v