Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml
7000pctAUTO 3aa31623bf
Some checks failed
CI / test (push) Failing after 1s
fix: find python on the system
2026-03-22 17:11:34 +00:00

26 lines
733 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Find Python
run: |
find / -name "python*" -type f 2>/dev/null | head -20
echo "---"
which python3 || echo "python3 not in PATH"
echo "---"
ls -la /usr/bin/python* 2>/dev/null || echo "No python in /usr/bin"
echo "---"
ls -la /usr/local/bin/python* 2>/dev/null || echo "No python in /usr/local/bin"
- name: Try pip3
run: |
which pip3 || echo "pip3 not in PATH"
pip3 --version || echo "pip3 failed"
- name: Install using pip3
run: |
pip3 install -e ".[dev]" || echo "pip3 install failed"