Skip to content

updated to new api version #4

updated to new api version

updated to new api version #4

Workflow file for this run

name: t3api Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies with uv
run: |
uv venv
source .venv/bin/activate
uv pip install -e .
uv pip install pytest pytest-cov
- name: Test with pytest
run: |
source .venv/bin/activate
pytest --cov=t3api