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