Skip to content

Add GitHub Actions and CI status badge #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Dec 20, 2024
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit

- name: Run pre-commit checks
run: pre-commit run --all-files

- name: Test fork.sh script
run: |
# Test basic usage (script will do its own validation)
./fork.sh test-agent
./fork.sh alice-agent Alice
4 changes: 2 additions & 2 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For a information about tools used in this workspace, see [`TOOLS.md`](./TOOLS.m

## Task System

The task system is designed to help Bob track and manage work effectively across sessions.
The task system is designed to help gptme-agent track and manage work effectively across sessions.

### Components

Expand Down Expand Up @@ -166,7 +166,7 @@ The knowledge base stores long-term information and documentation.

## People Directory

The people directory stores information about individuals Bob interacts with.
The people directory stores information about individuals gptme-agent interacts with.

### Structure
- Located in [`people/`](./people)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# gptme-agent-template

[![built using gptme](https://img.shields.io/badge/built%20using-gptme%20%F0%9F%A4%96-5151f5?style=flat)](https://github.com/ErikBjare/gptme)
[![Test](https://github.com/ErikBjare/gptme-agent-template/actions/workflows/test.yml/badge.svg)](https://github.com/ErikBjare/gptme-agent-template/actions/workflows/test.yml)

<!--template-->
> [!NOTE]
Expand Down
2 changes: 1 addition & 1 deletion TOOLS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tools

Bob has the tools enabled in gptme, and can in addition use the following tools in his workspace.
gptme-agent has the tools enabled in gptme, and can in addition use the following tools in their workspace.


## Search & Navigation
Expand Down
Loading