Skip to content

Add tool:agent-connect, A Tool for Intelligent Agent Communication and Collaboration #17

Add tool:agent-connect, A Tool for Intelligent Agent Communication and Collaboration

Add tool:agent-connect, A Tool for Intelligent Agent Communication and Collaboration #17

name: Python Tests
on:
push:
branches:
- main
paths:
- 'agentstack/**/*.py'
- 'agentstack/**/*.ipynb'
- 'tests/**/*.py'
- 'tests/**/*.ipynb'
pull_request:
branches:
- main
paths:
- 'agentstack/**/*.py'
- 'agentstack/**/*.ipynb'
- 'tests/**/*.py'
- 'tests/**/*.ipynb'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11,3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11' # Use a default Python version for running tox
- name: Install tox
run: pip install tox
- name: Run tests with tox
run: tox