Skip to content

Better Tool Call Handling + Fixing CI/CD #5

Better Tool Call Handling + Fixing CI/CD

Better Tool Call Handling + Fixing CI/CD #5

Workflow file for this run

name: Test Suite
on:
pull_request:
paths:
- '**.py'
- .github/workflows/test.yml
push:
branches:
- main
paths:
- '**.py'
- .github/workflows/test.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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 dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run tests with pytest
run: pytest .