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
22 lines
457 B
YAML
22 lines
457 B
YAML
# 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
|
|
|