Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml
7000pctAUTO a537b1c468
Some checks failed
CI / test (push) Failing after 2s
fix: try with explicit python3 path
2026-03-22 17:13:30 +00:00

25 lines
508 B
YAML

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