Compare commits

..

No commits in common. "main" and "typosaurus/13-add-a-median-function-to-the-calculator" have entirely different histories.

2 changed files with 0 additions and 30 deletions

View File

@ -1,21 +0,0 @@
# retoor <retoor@molodetz.nl>
name: CI
on:
push:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run tests
run: make verify

View File

@ -1,4 +1,3 @@
# retoor <retoor@molodetz.nl>
# typosaurus-sandbox
A minimal Python calculator used to verify the Typosaurus agent system.
@ -27,11 +26,3 @@ A minimal Python calculator used to verify the Typosaurus agent system.
```
make verify
```
## CI
- Workflow file: `.gitea/workflows/ci.yml`
- Trigger: push to `main` or `master` branches
- Steps: checkout, Python 3.12 setup, dependency install, `make verify`