Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

fix: tool description length #276

fix: tool description length

fix: tool description length #276

Workflow file for this run

name: hive-agent-py
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[web3]
pip install -r requirements-dev.txt
- name: Run Black
run: |
black hive_agent tests
- name: Run tests with pytest
run: |
cd tests
pytest