Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml
7000pctAUTO a4e228573f
Some checks failed
CI / test (push) Failing after 9s
fix: add debug steps to diagnose CI issue
2026-03-22 17:03:47 +00:00

36 lines
724 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Debug
run: |
echo "Starting CI..."
whoami
pwd
ls -la
- name: Check OS
run: |
cat /etc/os-release || echo "Not available"
- name: Install Python
run: |
apt-get update -qq
apt-get install -y -qq python3 python3-pip
python3 --version
- name: Install deps
run: |
pip3 install -e ".[dev]" --quiet
- name: Lint
run: |
ruff check src/
- name: Type check
run: |
mypy src/
- name: Test
run: |
pytest tests/ -v