From 001da170a8b71dfb6e845b1fad1ce48835f22844 Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Sun, 12 Jul 2026 07:51:22 +0200 Subject: [PATCH] Add Gitea Actions CI (lint + tests) Co-Authored-By: Claude Fable 5 --- .gitea/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..4245c74 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI +on: + push: + branches: [master] + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - name: Install + run: pip install -e '.[dev]' + - name: Lint + run: ruff check gogo tests scripts + - name: Tests + # SQLite-backed suite — no services needed; real-LLM acceptance tests + # self-skip without an API key + run: pytest -q --timeout=120