Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml
7000pctAUTO 40f934d542
Some checks failed
CI / test (push) Has been cancelled
fix: try gitea runner label
2026-03-22 17:13:47 +00:00

27 lines
480 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: gitea
steps:
- name: Check environment
run: |
whoami
pwd
python3 --version || echo "Python not found"
- name: Install deps
run: |
pip3 install -e ".[dev]"
- name: Lint
run: |
ruff check src/
- name: Type check
run: |
mypy src/
- name: Test
run: |
pytest tests/ -v