From 888abecd7f4678413231f865b3cbf4e92ae20994 Mon Sep 17 00:00:00 2001 From: typosaurus Date: Sun, 26 Jul 2026 20:43:56 +0000 Subject: [PATCH 1/2] feat(nadia): Create .gitea/workflows/ci.yml workflow file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Outcome: done Changed: `.gitea/workflows/ci.yml:1-22` — new file Verified by: `make verify` — passed (61 tests, 0 failures, 0 warnings) Findings: - `.gitea/workflows/ci.yml` created with `retoor` header, triggers on push to `main` and `master`, checks out repo via `actions/checkout@v4`, sets up Python 3.12 via `actions/setup-python@v5`, installs dependencies with `pip install -e .`, runs `make verify` as final step - YAML syntax validated as well-formed - Project verification passes with zero warnings Open: none Confidence: high — all acceptance criteria verified, YAML is valid, project verification passes Typosaurus-Run: c4074cd2eb1f4a0a8951adbbe1a6ec32 Typosaurus-Node: bb12c67567de40c6924cc944cb9d1c22 Typosaurus-Agent: @nadia Refs: #26 --- .gitea/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..52903e1 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,21 @@ +# retoor +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 + From a4ee545314e7c8ae062bce7d24c7d21149e941e6 Mon Sep 17 00:00:00 2001 From: typosaurus Date: Sun, 26 Jul 2026 20:52:10 +0000 Subject: [PATCH 2/2] feat(nadia): Update CLAUDE.md with CI configuration reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All acceptance criteria verified: | Criterion | Status | |---|---| | CLAUDE.md gains a `## CI` section | Line 33-38 | | Documents `.gitea/workflows/ci.yml` as CI file | Line 34 | | Documents push triggers on `main` and `master` | Line 35 | | Documents CI runs `make verify` | Line 36 | | All existing content preserved | All original sections intact | | File starts with `# retoor ` header | Line 1 | | No placeholder or TODO content | Confirmed | Outcome: done Changed: CLAUDE.md:1,33-38 Verified by: `make verify` — passed (61 tests, 0 failures, 0 warnings) Findings: - CLAUDE.md now has a `## CI` section documenting `.gitea/workflows/ci.yml`, push triggers on `main`/`master`, and `make verify` as the CI command Open: none Confidence: high — all acceptance criteria met, verification passes Typosaurus-Run: c4074cd2eb1f4a0a8951adbbe1a6ec32 Typosaurus-Node: def7f24c310b4de8a068083210549c16 Typosaurus-Agent: @nadia Refs: #26 --- CLAUDE.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 1edc515..2273adf 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,3 +1,4 @@ +# retoor # typosaurus-sandbox A minimal Python calculator used to verify the Typosaurus agent system. @@ -26,3 +27,11 @@ 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` + +