fix: minimal debug to find Python
All checks were successful
CI / test (push) Successful in 2s

This commit is contained in:
2026-03-22 17:12:46 +00:00
parent 3aa31623bf
commit 8dd540e28a

View File

@@ -8,19 +8,19 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Find Python - name: Check /opt
run: | run: |
find / -name "python*" -type f 2>/dev/null | head -20 ls -la /opt/ 2>/dev/null || echo "No /opt"
echo "---" ls -la /home/ 2>/dev/null || echo "No /home"
which python3 || echo "python3 not in PATH" df -h
echo "---" - name: Check env
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: | run: |
which pip3 || echo "pip3 not in PATH" echo "HOME=$HOME"
pip3 --version || echo "pip3 failed" echo "PATH=$PATH"
- name: Install using pip3 echo "USER=$(whoami)"
- name: Check installed packages
run: | run: |
pip3 install -e ".[dev]" || echo "pip3 install failed" dpkg -l | grep -i python || echo "No python packages found"
- name: Try pip
run: |
pip3 install -e ".[dev]" || pip install -e ".[dev]" || echo "pip not available"