Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml
7000pctAUTO bac3465172
Some checks failed
CI / test (push) Failing after 1s
fix: use apk package manager instead of apt-get
2026-03-22 17:13:01 +00:00

25 lines
498 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check Python via apk
run: |
apk add --no-cache python3 py3-pip
- name: Verify Python
run: |
python3 --version
pip3 --version
- 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