Skip to content

Feat/UI tars plugin #16

Feat/UI tars plugin

Feat/UI tars plugin #16

Workflow file for this run

name: Run Tests for Agents
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
API_KEYS: ${{ secrets.API_KEYS }}
steps:
# Step 1: Checkout the code
- name: Checkout code
uses: actions/checkout@v3
# Step 2: Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
# Step 3: Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Step 4: Run the tests
- name: Run tests
run: |
python test/test_agents.py