Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 567 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (27 loc) · 567 Bytes

This guide is work in progress ...

Clone the repository:

git clone https://github.com/gradion-ai/freeact-skills.git
cd freeact-skills

Create a new Conda environment and activate it:

conda env create -f environment.yml
conda activate freeact-skills

Install dependencies with Poetry:

poetry install --all-extras --with docs

Install pre-commit hooks:

invoke precommit-install

Enforce coding conventions (done automatically by pre-commit hooks):

invoke cc

Run tests:

pytest -s tests