- .forgejo/workflows/ci.yml — backend (ruff + pytest) + frontend (vue-tsc) - .forgejo/workflows/mirror.yml — push to GitHub + Codeberg on main/tags - .forgejo/workflows/release.yml — git-cliff changelog + Forgejo release on v* tags - .cliff.toml — conventional commits changelog config Frontend CI runs typecheck only (no vitest yet; tracked separately). circuitforge-core installed from Forgejo git (public; not on PyPI). Docker push disabled pending BSL registry policy (cf-agents#3). Closes #23
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
# Kiwi CI — lint, type-check, test on PR/push
|
|
# Full-stack: FastAPI (Python) + Vue 3 SPA (Node)
|
|
# Adapted from Circuit-Forge/cf-agents workflows/ci.yml (cf-agents#4 tracks the
|
|
# upstream ci-fullstack.yml variant; update this file when that lands).
|
|
#
|
|
# Note: frontend has no test suite yet — CI runs typecheck only.
|
|
# Add `npm run test` when vitest is wired (kiwi#XX).
|
|
#
|
|
# circuitforge-core is not on PyPI — installed from Forgejo git (public repo).
|
|
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main, 'feature/**', 'fix/**']
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
backend:
|
|
name: Backend (Python)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
cache: pip
|
|
|
|
- name: Install circuitforge-core
|
|
run: pip install git+https://git.opensourcesolarpunk.com/Circuit-Forge/circuitforge-core.git@main
|
|
|
|
- name: Install dependencies
|
|
run: pip install -e ".[dev]" || pip install -e . pytest pytest-asyncio httpx ruff
|
|
|
|
- name: Lint
|
|
run: ruff check .
|
|
|
|
- name: Test
|
|
run: pytest tests/ -v --tb=short
|
|
|
|
frontend:
|
|
name: Frontend (Vue)
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: frontend
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: npm
|
|
cache-dependency-path: frontend/package-lock.json
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Type check
|
|
run: npx vue-tsc --noEmit
|